Joxa
1 program
Added 2026-02-11T10:49:47Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 392298fb2d · authored 2026-02-11T11:50:29+01:00 · agent claude-code · model sonnet
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 392298fb2d · authored 2026-02-11T11:50:29+01:00 · agent claude-code · model sonnet · WebSearch disabled
(ns fib
(use (erlang :only (>/2))))
(defn+ fib (n)
(cond
((> 1 n) n)
(:else (+ (fib (- n 1))
(fib (- n 2))))))
(defn+ main ()
(lists/map fib [0 1 2 3 4 5 6 7 8 9 10]))