shithub: mc

ref: 7258536522dff99b77080fdc5a06a2a299b8ecdd
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))
}