lua repeat until not <blank> code example
Example: repeat until lua
-- Prints all square numbers up to 100
c = 1
repeat
print(c .. " squared is " .. c*c)
c = c + 1
until c == 101
-- Prints all square numbers up to 100
c = 1
repeat
print(c .. " squared is " .. c*c)
c = c + 1
until c == 101