Arithmetic/Integer: Difference between revisions

(incorrect!)
Line 456:
{{incorrect|Clipper|Name of function not given.}}
=={{header|Clipper}}==
<lang clipper>Functionprocedure Test( a, b )
? "a+b", a + b
? "a-b", a - b
Line 466:
// Exponentiation is also a base arithmetic operation
? "a**b", a ** b
Return Nil return NIL</lang>
 
=={{header|Clojure}}==