Liszt
1 program
Added 2026-02-10T10:46:09Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 23afd340a6 · authored 2026-02-10T11:48:04+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 23afd340a6 · authored 2026-02-10T11:48:04+01:00 · agent claude-code · model sonnet · WebSearch disabled
(defun factorial (n)
(if (zerop n)
1
(* n (factorial (1- n)))))
(defun test-factorial ()
(print (factorial 5))
(terpri))