shithub: mc

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