shithub: mc

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