shithub: mc

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