shithub: mc

ref: b3a8a63686f2447dea9c135ab863cee5364b3a07
dir: /test/nestfn.myr/

View raw version
use std
/* checks that nested functions without environment capture work. should
* exit with 42. */
const main = {
	const ret42 = {
		-> 42
	}
	std.exit(ret42())
}