shithub: mc

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