shithub: mc

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