shithub: mc

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