core: for/foreach -> Loop normalization (always-on); LoopForm MVP-3 per-segment reorder; smokes stabilized (VM + LLVM PHI); docs updated (macro-system, loopform); quiet macro load logs
This commit is contained in:
9
apps/tests/macro/loopform/with_break.nyash
Normal file
9
apps/tests/macro/loopform/with_break.nyash
Normal file
@ -0,0 +1,9 @@
|
||||
local i = 0
|
||||
loop(i < 6) {
|
||||
print(i)
|
||||
if (i == 3) {
|
||||
break
|
||||
}
|
||||
i = i + 1
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user