shithub: mc

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