Logo

Programming-Idioms

History of Idiom 78 > diff from v66 to v67

Edit summary for version 67 by foobar:
New Lisp implementation by user [foobar]

Version 66

2019-09-03, 17:28:21

Version 67

2019-09-26, 15:22:15

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
(loop do (something)
      while c)