shithub: mc

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