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