shithub: mc

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