shithub: MicroHs

ref: 5c690b0df0a94f28c32aae6347e398ab2b2ee38b
dir: /Example.hs/

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

fac :: Int -> Int
fac 0 = 1
fac n = n * fac(n-1)

main :: IO ()
main = do
  let
    rs = map fac [1,2,3,10]
  putStrLn "Some factorials"
  putStrLn $ showList showInt rs