Difference between revisions of "Lenny222/About Haskell"

From HaskellWiki
Jump to navigation Jump to search
(8 intermediate revisions by the same user not shown)
Line 3: Line 3:
 
== Haskell ==
 
== Haskell ==
   
is a programming language with the following features:
+
Haskell is a programming language with the following features:
   
 
{| class="wikitable"
 
{| class="wikitable"
 
|-
 
|-
 
!
 
!
! What does that mean?
+
! What it means
! What is it good for?
+
! What it is good for
 
|-
 
|-
 
| functional
 
| functional
  +
| ?
  +
| ?
  +
|-
  +
| garbage collected
  +
| ?
  +
| ?
  +
|-
  +
| high-level
 
| ?
 
| ?
 
| ?
 
| ?
Line 31: Line 39:
 
|-
 
|-
 
| pure
 
| pure
  +
| ?
  +
| ?
  +
|-
  +
| static typed
  +
| ?
  +
| ?
  +
|-
  +
| strongly typed
 
| ?
 
| ?
 
| ?
 
| ?
 
|}
 
|}
   
== Users ==
+
== Who is using it ==
   
 
== Further reading ==
 
== Further reading ==

Revision as of 12:51, 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 ? ?

Who is using it

Further reading