ref: c40d2d87ada20043d12e9fd57a0ac0de316ebbf4
dir: /tests/ListTest.hs/
module ListTest(module ListTest) where import Prelude main :: IO () main = do putStrLn $ show $ sum [1,2,3] putStrLn $ show $ product [1,2,3,4] putStrLn $ show $ and [True] putStrLn $ show $ and [True, False]