CLP(R) is a
declarative programming language. A declarative programming language is quite different from
imperative programming languages like C++ or Java.
Declarative Statement
An Example of a declarative statement in CLP(R)
5*x + 3*y = 19,
1*x + 2*y = 7.
The effect of these declarations would be to define x and y as the solutions to simultaneous linear equations.
External links