Logo

Programming-Idioms

History of Idiom 78 > diff from v67 to v68

Edit summary for version 68 by tkoenig:
New Fortran implementation by user [tkoenig]

Version 67

2019-09-26, 15:22:15

Version 68

2019-09-26, 17:30:14

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
  call do_something
  if (.not. c) exit
end do