shithub: mc

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