Comparison of functional programming languages: Difference between revisions
JaredUpdike (talk | contribs) (Added page from old haskell.org/comparison.html page) |
JaredUpdike (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
==Haskell compared to other Functional Programming Languages== | |||
{| border=1 cellspacing=0 cellpadding=5 | {| border=1 cellspacing=0 cellpadding=5 | ||
| | | |
Revision as of 01:22, 8 April 2006
Haskell compared to other Functional Programming Languages
Evaluation | IO | Typing | Pure | |
---|---|---|---|---|
Haskell | lazy | monads | static | yes |
Clean | lazy | uniqueness | static | yes |
ML | strict | side-effects | static | no |
Scheme | strict | side-effects | dynamic | no |
Erlang | ?strict | ?side-effects | ?dynamic w/ compiler annotions for static typing | ?yes (shadows old version of variable) |