shithub: mc

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