Fibonacci series in Clojure

后端 未结 0 1353
北海茫月
北海茫月 2021-01-27 00:13

We need Fibonacci series in Clojure, for which we had written code as-

(def a 0)
(def b 0)
(def c 1)
(defn fibonacci []
    (def n (atom 0))
    (while (< @n 1         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题