shithub: mc

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