shithub: mc

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