shithub: mc

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