shithub: mc

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