Logo

Programming-Idioms

History of Idiom 78 > diff from v76 to v77

Edit summary for version 77 by programming-idioms.org:
[Dart] +DemoURL

Version 76

2020-10-10, 23:38:26

Version 77

2020-11-05, 14:56:10

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.

Variables
c
Variables
c
Extra Keywords
until
Extra Keywords
until
Code
do {
  someThing();
  someOtherThing();
} while(c);
Code
do {
  someThing();
  someOtherThing();
} while(c);
Demo URL
https://dartpad.dev/406a44747b74f93a4fdcde9b848031a0