shithub: mc

ref: 10c0307e860d4f1ff9f9f2db67aa1fa4858bfaaa
dir: /test/exportmain.myr/

View raw version
use std

pkg =
	const foo	: (val:int -> int)
;;


const foo = {val
	-> val
}

const main = {
	std.exit(foo(42))
}