shithub: mc

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