shithub: mc

ref: 09c0c2d9ab8c27a6f45c3740a0bf05641fc28832
dir: /test/closure.myr/

View raw version
/* checks that functions with environment capture work. should exit with 42. */
const main = {
	var a = 42
	var f = {b
		-> a + b
	}
	-> f(13)
}