Difference between revisions of "Lenny222/About Haskell"

From HaskellWiki
Jump to navigation Jump to search
Line 2: Line 2:
   
 
== Haskell ==
 
== Haskell ==
 
=== Overview ===
 
   
 
Haskell is a programming language with the following features:
 
Haskell is a programming language with the following features:

Revision as of 12:45, 9 July 2009


Haskell

Haskell is a programming language with the following features:

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

Users

Further reading