shithub: mc

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