|
|
This article or section is missing citations or needs footnotes. Using inline citations helps guard against copyright violations and factual inaccuracies. (June 2008) |
| Paradigm | functional |
|---|---|
| Appeared in | 1987 |
| Designed by | Software Technology Research Group of Radboud University Nijmegen |
| Typing discipline | strong, static, dynamic |
| Major implementations | Clean |
| Influenced by | Lean, Haskell |
In computer science, Clean is a general-purpose purely functional computer programming language.
Contents |
|
|
To meet Wikipedia's quality standards, this article or section may require cleanup because it is in a list format that may be better presented using prose. You can help by converting this section to prose, if appropriate. Editing help is available. (June 2008) |
Hello world (Store as hello.icl):
module hello
Start = "Hello, world!"
module factorial
fac 0 = 1 fac n = n * fac (n-1) // find the factorial of 10 Start = fac 10
module fibonacci
fib 0 = 0 fib 1 = 1 fib n = fib (n - 2) + fib (n - 1)
Start = fib 7
Infix operator:
(^) infixr 8 :: Int Int -> Int (^) x 0 = 1 (^) x n = x * x ^ (n-1)
The type declaration states that the function is a right associative infix operator with priority 8: this states that x*x^(n-1) is equivalent to x*(x^(n-1)) as opposed to (x*x)^(n-1); this operator is pre-defined in the Clean standard environment.
Computation is based on graph rewriting and reduction. Constants such as numbers are graphs and functions are graph rewriting formulas. This, combined with compilation to native code, makes Clean programs relatively fast, even with high abstraction.
Earlier Clean system versions were written completely in C, thus avoiding bootstrapping issues.
Clean is available for Microsoft Windows. It is also available with limited input/output capabilities and without the "Dynamics" feature for Apple Macintosh, Solaris and Linux.
Clean is dual licensed: it is available under the terms of the GNU LGPL, and also under a proprietary license.
Why are we here?
All text is available under the terms of the GNU Free Documentation License
This page is cache of Wikipedia. History