shithub: mc

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