shithub: mc

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