shithub: mc

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