[Haskell-cafe] Newbie: generating a truth table

Yitzchak Gale gale at sefer.org
Tue Feb 6 17:22:40 EST 2007


Philippe de Rochambeau wrote:
> I have tried
> map (putStrLn) pImpliesQAndRLoopShow
> but that results in the following error message:

Try

mapM_ putStrLn pImpliesQAndRLoopShow

or

putStrLn $ unlines pImpliesQAndRLoopShow

Regards,
Yitz


More information about the Haskell-Cafe mailing list