Logo

Programming-Idioms

History of Idiom 78 > diff from v27 to v28

Edit summary for version 28 by :

Version 27

2015-09-05, 13:24:06

Version 28

2015-09-05, 13:24:26

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.

Code
do_while c b = do a <- b; if c a
                            then do_while c b
      else return a

do_while (=="") getLine
Code
do_while c b = do a <- b; if c a
                          then do_while c b
                          else return a

do_while (=="") getLine