Logo

Programming-Idioms

History of Idiom 78 > diff from v7 to v8

Edit summary for version 8 by :

Version 7

2015-09-04, 12:35:16

Version 8

2015-09-04, 12:39:26

Idiom #78 "do while" loop

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

Idiom #78 "do while" loop

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

Code
repeat
  Something;
  SomethingElse;
until
  c;
Demo URL
https://ideone.com/Giptm5