shithub: mc

ref: 26ac18e94d9f64f5153c51cf6d6151367ea0dfd7
dir: /test/gtrait.myr/

View raw version
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))
}