shithub: mc

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