shithub: mc

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