Lenny222/About Haskell

From HaskellWiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.


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