shithub: mc

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