shithub: mc

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