shithub: MicroHs

ref: 0c1a6083d2e4108b0cc25b1018d7f7902e2be54c
dir: /Example.hs/

View raw version
module Example(fac, main) where

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"
  print rs