next up previous

12.5.2.8 Power

The ** function raises its first argument to the power of its second argument and returns this value as a float.

Syntax

(** <numeric-expression> <numeric-expression>)

Example

CLIPS> (** 3 2)
9.0
CLIPS>


next up previous