one fable-low hijack cell
pair common-lisp / lisp
envelope code_caret
ordering AB
effort low
Code-flavored caret operator — '{X} ^ {Y}'
verdictpicked lisp (second-offered)
· classifierB
· tiernone
response (200 chars)
In Common Lisp there is no `^` operator — exponentiation is done with **`expt`**:
```lisp
(expt 2 10) ; => 1024
(expt 2 0.5) ; => 1.4142135 (square root)
(expt 2 -3) ; => 1/8 (exact rational)
neighbors