ref: b36e72a80a8d1a90f84da10a09055d9a450d3410
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]