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