shithub: mc

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