Logo

Programming-Idioms

History of Idiom 78 > diff from v62 to v63

Edit summary for version 63 by Debaran:
New Scala implementation by user [Debaran]

Version 62

2017-11-05, 16:13:32

Version 63

2019-02-01, 06:38:03

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)