shithub: mc

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