Clojure CLR
1 program
Added 2026-03-13T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: ClojureCLR, Clojure for .NET
Provenance: commit b8ab6f3b83 · authored 2026-03-13T07:00:54+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Fibonacci sequence
Provenance: commit b8ab6f3b83 · authored 2026-03-13T07:00:54+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
;; Fibonacci sequence using Clojure CLR
(defn fib [n]
(loop [a 0 b 1 cnt n]
(if (zero? cnt)
a
(recur b (+ a b) (dec cnt)))))
(doseq [i (range 10)]
(println (str "fib(" i ") = " (fib i))))