shithub: mc

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