shithub: mc

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