shithub: mc

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