shithub: mc

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