shithub: mc

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