shithub: mc

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