shithub: MicroHs

ref: 2bcb05a5abfb65ab2779e4418df2cd33415a646c
dir: /tests/ListTest.hs/

View raw version
module ListTest(module ListTest) where
import Prelude

main :: IO ()
main = do
  putStrLn $ showInt $ sum [1,2,3]
  putStrLn $ showInt $ product [1,2,3,4]
  putStrLn $ showBool $ and [True]
  putStrLn $ showBool $ and [True, False]