shithub: mc

ref: 1a00720e1fc60ce82d95763a031efac9b71340ce
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))
}