shithub: mc

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