Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. # count <code clojure> (defn my-count [coll] (loop [result 0 remain coll] (if (seq remain) (recur (inc result) (rest remain)) result))) (my-count [1 2 3 4 5]) ;;=> 5 </code> open/count.txt Last modified: 2024/10/05 06:15by 127.0.0.1