shithub: mc

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