Skip to content

pxai/haskellintro

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Haskell intro

let's see where we go...

Remember to use CABAL for package management

Haskell

Haskell is pure functional programming language

  • Pure functions
  • Extremely lazy
  • Type inference

Running haskell

Download ghci and then:

ghci

Prelude>

Or edit a file with *.hs extension and then:

runhaskell file.hs

Infix operator

Normally in haskell we use prefix notation:

function_name x y

But we can change that doing:

x `function_name y

About

Haskell Intro

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors