[Haskell-cafe] avoid to print empty string
Damien Mattei
damien.mattei at gmail.com
Mon Jan 21 19:48:31 UTC 2019
i have this in a Monad IO:
forM_ fltrdNamesBDs $ \(name,bdSidonie,bdWDS) ->
if (bdWDS /= bdSidonie)
then
putStrLn $ name ++ " " ++ (show (bdSidonie :: Maybe Float))
++ " " ++ show (bdWDS :: Maybe Float) ++ " " ++ show (bdWDS == bdSidonie)
else
putStr ""
is there a way to remove the silly putStr "" that output an empty string, i
tried with when.... but as when return Nothing in case of False it fails to
compile
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.haskell.org/pipermail/haskell-cafe/attachments/20190121/5fe6ee63/attachment.html>
More information about the Haskell-Cafe
mailing list