shithub: mc

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