shithub: mc

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