shithub: mc

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