Difference between revisions of "Lenny222/About Haskell"

From HaskellWiki
Jump to navigation Jump to search
Line 7: Line 7:
 
{| class="wikitable"
 
{| class="wikitable"
 
|-
 
|-
! Feature
+
!
! What does it mean?
+
! What does that mean?
 
! What is it good for?
 
! What is it good for?
 
|-
 
|-

Revision as of 11:57, 9 July 2009


Haskell

is a programming language with the following features:

What does that 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