shithub: mc

ref: 997b26b1303f08fd91937a518763e5941d95b1e3
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))
}