Difference between revisions of "Lenny222/About Haskell"

From HaskellWiki
Jump to navigation Jump to search
Line 3: Line 3:
 
== Haskell ==
 
== Haskell ==
   
is a programming language with the following properties:
+
is a programming language with the following features:
   
 
{| class="wikitable"
 
{| class="wikitable"

Revision as of 11:56, 9 July 2009


Haskell

is a programming language with the following features:

Feature What does it mean? What is it good for?
functional ? ?
lambda functions ? ?
lazy ? ?
pattern matching Example:
 fib 0 = 0
 fib 1 = 1
 fib n = fib (n - 2) + fib (n - 1)
pure ? ?

Users

Further reading