shithub: mc

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