shithub: mc

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