golden: add for/foreach normalized AST and loop_nonreorder (skip-reorder); docs: MacroCtx section; demo macro (identity)

This commit is contained in:
Selfhosting Dev
2025-09-20 09:19:28 +09:00
parent 497da75f90
commit 37f93d5630
4 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,6 @@
local i = 0
loop(i < 3) {
i = i + 1
print(i)
}