shithub: mc

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