shithub: mc

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