shithub: mc

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