shithub: mc

ref: 0113cd12d5ce3faae500772c76018f0ad4dd776a
dir: /test/nestclosure.myr/

View raw version
use std

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