Logo

Programming-Idioms

History of Idiom 78 > diff from v34 to v35

Edit summary for version 35 by :
New Perl implementation by user [Roboticus]

Version 34

2015-11-30, 12:37:31

Version 35

2015-12-18, 20:36:13

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
do {
    doSomeStuff();
} while(c);