shithub: mc

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