/haskell

trying, learning Haskell

Primary LanguageHaskellMIT LicenseMIT

#Trying Haskell

fac.sh

ghci  
:load fac.hs  
fac 0  
fac 1  
fac 99  
fac 1024

parallel.hs

ghc -02 --make parallel.hs -threaded -rtsopts
time ./A +RTS -N2

Couldn't get the parallel.hs example to work as brew installed Haskell doesn't seem to have Control.Parallel