let's see where we go...
Remember to use CABAL for package management
Haskell is pure functional programming language
- Pure functions
- Extremely lazy
- Type inference
Download ghci and then:
ghci
Prelude>Or edit a file with *.hs extension and then:
runhaskell file.hsNormally in haskell we use prefix notation:
function_name x yBut we can change that doing:
x `function_name y