GDLisp
1 program
Added 2026-02-12T00:00:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit e02b1fdc91 · authored 2026-02-12T13:51:32+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
Factorial Function
Provenance: commit e02b1fdc91 · authored 2026-02-12T13:51:32+01:00 · agent claude-code · model sonnet · WebSearch disabled
(defn factorial (n)
(if (<= n 1)
1
(* n (factorial (- n 1)))))
(defn main ()
(print (factorial 5))
(print (factorial 10)))