Logo

Programming-Idioms

History of Idiom 78 > diff from v63 to v64

Edit summary for version 64 by Debaran:
[Scala] Removed whitespace

Version 63

2019-02-01, 06:38:03

Version 64

2019-02-01, 06:38:34

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.

Extra Keywords
until
Extra Keywords
until
Code
do {
  someThing()
  someOtherThing()
} while (c)
  
Code
do {
  someThing()
  someOtherThing()
} while (c)