Logo

Programming-Idioms

History of Idiom 78 > diff from v37 to v38

Edit summary for version 38 by :
New Csharp implementation by user [javasucks]

Version 37

2016-01-01, 20:21:37

Version 38

2016-02-17, 11:24:43

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