Lux
1 program
Added 2026-02-06T12:00:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 4e8fd9ac26 · authored 2026-02-06T18:44:44+01:00 · agent claude-code · model sonnet
Sources mentioning this language
2 sources · pl_id:
pl/luxRelated languages
LLM-contributed programs
Fibonacci
Provenance: commit 4e8fd9ac26 · authored 2026-02-06T18:44:44+01:00 · agent claude-code · model sonnet · WebSearch disabled
(def (fib n)
(if (< n 2)
n
(+ (fib (- n 1))
(fib (- n 2)))))
(def (main _)
(let [result (fib 10)]
(io.print (text/encode result))
0))
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)