shithub: mc

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