Clean (programming language)

Clean (programming language)
Clean
Cleanlang logo.jpg
Paradigm(s) functional
Appeared in 1987
Designed by Software Technology Research Group of Radboud University Nijmegen
Stable release 2.3 (December 21, 2010; 9 months ago (2010-12-21))
Typing discipline strong, static, dynamic
Influenced by Lean, Haskell
Usual filename extensions .icl, .dcl, .abc, .obj

In computer science, Clean is a general-purpose purely functional computer programming language.

Contents

Features

The language Clean first appeared in 1987 and is still further developed; it shares many properties with Haskell: referential transparency, list comprehension, guards, garbage collection, higher order functions and currying and lazy evaluation.

An integrated development environment (IDE) is included in the Clean distribution.

Clean's method for dealing with mutable state and I/O is done through a uniqueness typing system, in contrast to Haskell's use of monads. "The uniqueness type system also allows the Clean compiler to generate efficient code because uniquely attributed data structures can be destructively updated."[1]

Examples

Hello world:

module hello
Start :: {#Char}
Start = "Hello, world!"

Factorial:

 module factorial
fac 0 = 1 fac n = n * fac (n-1)
 // find the factorial of 10
 Start = fac 10

Factorial:

 module factorial2
import StdEnv fac 0 = 1 fac n = prod [1..n]//Generate a list that goes from 1 to n and returns the product of the elements
 // find the factorial of 6
 Start = fac 6

Fibonacci sequence:

 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.

How Clean works

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.[citation needed]

Compiling

  1. Source files (.icl) and project files (.dcl) are converted into Clean's platform-independent bytecode (.abc), implemented in C and Clean.
  2. Bytecode is converted to object code (.obj) using C.
  3. object code is linked with other files in the module and the runtime system and converted into a normal executable in Clean.

Earlier Clean system versions were written completely in C, thus avoiding bootstrapping issues.

Platforms

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.

License

Clean is dual licensed: it is available under the terms of the GNU LGPL, and also under a proprietary license.

Versus Haskell

Speed

Some state that Clean is faster than Haskell,[2] but other research show that this depends on the kind of program that is tested.[3]

Syntactic differences

The syntax of Clean is very similar to Haskell, with some notable differences:[1]

Haskell Clean Remarks
(a -> b) -> [a] -> [b] (a -> b) [a] -> [b] higher order function
f . g f o g function composition
-5 ~5 unary minus
[ x | x <- [1..10] , isOdd x] [ x \\ x <- [1..10] | isOdd x] list comprehension
x:xs [x:xs] cons operator

See also

References

External links


Wikimedia Foundation. 2010.

Игры ⚽ Поможем решить контрольную работу

Look at other dictionaries:

  • Haskell (programming language) — Haskell Paradigm(s) functional, lazy/non strict, modular Appeared in 1990 Designed by Simon Peyton Jones, Lennart Aug …   Wikipedia

  • Python (programming language) — infobox programming language name = Python paradigm = multi paradigm: object oriented, imperative, functional year = 1991 designer = Guido van Rossum developer = Python Software Foundation latest release version = 2.6 latest release date =… …   Wikipedia

  • Oxygene (programming language) — Oxygene Developer RemObjects Software Stable release 3.0.21 (August 29, 2009; 2 years ago (2009 08 29)) Influenced by Object Pas …   Wikipedia

  • Turing (programming language) — Turing is a Pascal like programming language developed in 1982 by Ric Holt and James Cordy, then of University of Toronto, Canada. Turing is a descendant of Euclid, Pascal and SP/k that features a clean syntax and precise machine independent… …   Wikipedia

  • Scala (programming language) — Infobox programming language name = Scala paradigm = Multi paradigm: functional, object oriented year = 2003 designer = Martin Odersky developer = Programming Methods Laboratory of EPFL latest release version = 2.7.1 latest release date = May 5,… …   Wikipedia

  • Strict programming language — A strict programming language is one in which only strict functions (functions whose parameters must be evaluated completely before they may be called) may be defined by the user. A non strict programming language allows the user to define non… …   Wikipedia

  • SAC programming language — Infobox programming language name = SAC paradigm = array, functional year = 1994 designer = Sven Bodo Scholz, Clemens Grelck, et al developer = latest release version = latest release date = typing = static, strong implementations = dialects =… …   Wikipedia

  • Whitespace (programming language) — Whitespace is an esoteric programming language developed by Edwin Brady and Chris Morris at the University of Durham. It was released on 1 April 2003 (April Fool s Day). Its name is a reference to so called whitespace character codes in text… …   Wikipedia

  • Clean — may refer to: Music The Clean, an influential first wave punk band Clean (album), an industrial album by Deitiphobia Clean , a song by Depeche Mode from their 1990 album Violator Clean, an amplifier sound in guitar terminology Clean, an Edwin… …   Wikipedia

  • Cobra (programming language from Cobra Language LLC) — Cobra Paradigm(s) Multi paradigm: object oriented Appeared in 2006 Designed by Chuck Esterbrook Developer Cobra Language LLC Stable release 2010 10 18 (O …   Wikipedia

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”