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