Search
 
SCRIPT & CODE EXAMPLE
 

LUA

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
Comment

repeat until in lua

repeat
   statement(s)
until( condition )
Comment

PREVIOUS NEXT
Code Example
Lua :: lua how to concatenate string 
Lua :: while true do lua 
Lua :: what does local mean in roblox 
Lua :: lua random number 
Lua :: lua trim 
Lua :: what is lua used for 
Lua :: roblox table find 
Lua :: countif excel 
Lua :: lua string length 
Lua :: How to split license id fivem 
Lua :: finding humanoid roblox. part 
Lua :: random number genarator 
Lua :: can you throw an error forceable in lua 
Lua :: lua remove duplicates from table 
Lua :: how to see greatest value in a table lua 
Lua :: lua text script 
Matlab :: matlab parameter in title 
Matlab :: if else in matlab 
Matlab :: matlab what comes instead of drawmode 
Basic :: git access token 
Basic :: using amazon s3 to store your django sites static and media files 
Elixir :: elixir check type data 
Elixir :: elixir format code 
Scala :: scala enum 
Scala :: scala isinstanceof 
Excel :: Google Sheets How to Count business Days Between Two Dates 
Excel :: set row as header excel 
Perl :: perl format decimal 2 places not rounding 
Pascal :: does not equal in pascal 
Gdscript :: godot exit func 
ADD CONTENT
Topic
Content
Source link
Name
9+4 =