shithub: mc

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