shithub: mc

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