shithub: mc

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