shithub: mc

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