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