shithub: mc

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