shithub: mc

ref: 2f5e8d6a9a76d8a51a5d33146913cde4530a6501
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()
}