shithub: mc

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