shithub: mc

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