Повторите до тех пор, пока в Луа
repeat
statement(s)
until( condition )
Old-fashioned Ostrich
repeat
statement(s)
until( condition )
-- Prints all square numbers up to 100
c = 1
repeat
print(c .. " squared is " .. c*c)
c = c + 1
until c == 101