shithub: mc

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