shithub: mc

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