shithub: mc

ref: 22f662c694d2469e08614f582e1680f160966433
dir: /test/closure.myr/

View raw version
use std

const main = {
	var a, b, c, fn

	a = 111
	b = 555
	c = 333
	fn = {
		var x

		x = 666
		std.put("{}{}{}{}\n", a, b, c, x)
	}
	fn()
}