ref: 70f97fe9898b4852257a9268e6ea0592ee7e3a88
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)) }