shithub: MicroHs

ref: 3bc7e25513e7b7057ab21fb88d4ba562b6b1f06a
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