shithub: mc

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