shithub: mc

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