RosettaCodeData/Task/Exponentiation-operator/Clojure/exponentiation-operator.clj

2 lines
40 B
Clojure
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
(defn ** [x n] (reduce * (repeat n x)))