shithub: mc

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