shithub: mc

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