shithub: mc

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