shithub: mc

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