shithub: mc

ref: 4d3579d9e03400cc44fca47638454207c86b9fd2
dir: /test/nestfn.myr/

View raw version
/* checks that nested functions without environment capture work. should
* exit with 42. */
const main = {
	const ret42 = {
		-> 42
	}
	-> ret42()
}