SBCL
1 program
Added 2026-02-10T15:54:41Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Steel Bank Common Lisp
Provenance: commit 05f04c539d · authored 2026-02-10T16:55:20+01:00 · agent claude-code · model sonnet
Sources mentioning this language
2 sources · pl_id:
pl/sbclRelated languages
LLM-contributed programs
Factorial Calculator
Provenance: commit 05f04c539d · authored 2026-02-10T16:55:20+01:00 · agent claude-code · model sonnet · WebSearch disabled
(defun factorial (n)
(if (<= n 1)
1
(* n (factorial (- n 1)))))
(defun main ()
(format t "Factorial of 5: ~d~%" (factorial 5))
(format t "Factorial of 10: ~d~%" (factorial 10)))
(main)
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.)