You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A loop statement (currently any of F, L, LR, T, and W) should automatically set a local variable to its 0-indexed current iteration count. After the loop completes, the variable should equal the number of times the loop ran (possibly zero). The outermost loop(s) in a local scope should use e as their counter variable; the next level of nested loop(s) should use d, then c, then b, then a.
A loop statement (currently any of
F
,L
,LR
,T
, andW
) should automatically set a local variable to its 0-indexed current iteration count. After the loop completes, the variable should equal the number of times the loop ran (possibly zero). The outermost loop(s) in a local scope should usee
as their counter variable; the next level of nested loop(s) should used
, thenc
, thenb
, thena
.(See further discussion at #70.)
The text was updated successfully, but these errors were encountered: