shithub: mc

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