shithub: mc

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