Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Vb

Idiom #78 "do while" loop

Execute a block once, then execute it again as long as boolean condition c is true.

Do 
    SomeThing()
    SomeOtherThing()
Loop While c
loop
   stuff();
   if not c then
      exit;
   end if;
end loop;

New implementation...
< >
deleplace