9951 explained code solutions for 126 technologies


luaHow to continue in a loop


while true do
  ::mark::
  -- do something
  if ( true ) then goto mark end
endctrl + c
while true do

sample loop

if ( true ) then

condition to stop loop cycle and continue from the start

::mark::

mark loop start to have a change to go here later

goto mark

will continue execution at specified place inside loop