one fable-low hijack cell
pair common-lisp / lisp
envelope code_caret
ordering BA
effort low
Code-flavored caret operator — '{X} ^ {Y}'
verdictpicked common-lisp (first-offered)
· classifierA
· tiernone
response (200 chars)
In Common Lisp, there is no `^` operator for exponentiation. You use the function **`expt`**:
```lisp
(expt 2 10) ; => 1024
(expt 3 2) ; => 9
(expt 2 0.5) ; => 1.4142135 (square root)
(expt 2 -
neighbors