shithub: mc

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