lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


I vote for the implementation of a FOR loop.

In the past, I implemented a FOR loop as follows, for an experimental
script language; for examples:

for i = 1, 10, 12, -5+t
...
loop

for str = "a", "b", "ab" + s1, "x" + "z"
...
loop

Philippe