Logo

Programming-Idioms

History of Idiom 78 > diff from v9 to v10

Edit summary for version 10 by :

Version 9

2015-09-05, 13:08:12

Version 10

2015-09-05, 13:08:43

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.

Imports

Imports
Code
dowhile :: (a -> Bool) -> IO a -> IO ()
dowhile c b = do a <- b ; if (c a) then dowhile c b else return ()

dowhile (/="END") getLine
Code
dowhile :: (a -> Bool) -> IO a -> IO ()
dowhile c b = do a <- b
  if (c a) then dowhile c b else return ()

dowhile (/="END") getLine