Difference between revisions of "Lenny222/About Haskell"

From HaskellWiki
Jump to navigation Jump to search
Line 8: Line 8:
 
|-
 
|-
 
!
 
!
! What does that mean?
+
! What it means
! What is it good for?
+
! What it is good for
 
|-
 
|-
 
| functional
 
| functional

Revision as of 12:11, 9 July 2009


Haskell

is a programming language with the following features:

What it means What it is good for
functional ? ?
garbage collector ? ?
high-level ? ?
lambda functions ? ?
lazy ? ?
pattern matching Example:
 fib 0 = 0
 fib 1 = 1
 fib n = fib (n - 2) + fib (n - 1)
pure ? ?

Users

Further reading