shithub: mc

ref: 767534bdbac53853d443aaf095814c687fb5f486
dir: /test/nestclosure.myr/

View raw version
use std

const main = {
	var a = 1
	var f = std.fndup({
		{
			std.put("{}\n", a)
		}()
	})
	f()
}