shithub: mc

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