shithub: mc

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