shithub: mc

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