shithub: mc

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