ref: a4eb9c0aca8ae4adb6c50133ba26bbd250ae934d
dir: /test/gtrait.myr/
use std
trait comparable @a =
	cmp	: (a : @a, b : @a -> std.order)
;;
impl comparable @a :: numeric @a =
	cmp = {a, b
		-> std.numcmp(a, b)
	}
;;
const main = {
	std.put("{}", cmp(1, 2))
}