shithub: mc

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