shithub: mc

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