ref: 2bcb05a5abfb65ab2779e4418df2cd33415a646c
dir: /tests/Enum.hs/
module Enum(main) where import Prelude main :: IO () main = do putStrLn $ showList showInt [1 .. 5] putStrLn $ showList showInt [1 .. 1] putStrLn $ showList showInt [1 .. 0] putStrLn $ showList showInt [1,3 .. 10] putStrLn $ showList showInt [1, -1 .. -5] putStrLn $ showList showInt $ take 5 [1 ..] putStrLn $ showList showInt $ take 5 [1,3 ..]