shithub: mc

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