shithub: mc

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