Difference between revisions of "Lenny222/About Haskell"

From HaskellWiki
Jump to navigation Jump to search
Line 16: Line 16:
 
|-
 
|-
 
| pure
 
| pure
  +
| ?
  +
| ?
  +
|-
  +
| lazy
 
| ?
 
| ?
 
| ?
 
| ?

Revision as of 11:54, 9 July 2009


Haskell

is a programming language with the following properties:

Feature What does it mean? What is it good for?
functional ? ?
pure ? ?
lazy ? ?
pattern matching ? ?


functional

pure

Pattern matching

 fib 0 = 0
 fib 1 = 1
 fib n = fib (n - 2) + fib (n - 1)

Lambda functions

Users

Further reading