shithub: mc

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