shithub: mc

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