shithub: mc

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