shithub: mc

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