shithub: mc

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