shithub: mc

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