shithub: mc

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