shithub: mc

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