shithub: mc

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