EusLisp
1 program
Added 2026-02-07T14:49:47Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Euslisp, EUS Lisp
Provenance: commit 573c54d54c · authored 2026-02-07T15:50:11+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 Calculator
Provenance: commit 573c54d54c · authored 2026-02-07T15:50:11+01:00 · agent claude-code · model sonnet · WebSearch disabled
;;; Factorial function in EusLisp
(defun factorial (n)
(if (<= n 1)
1
(* n (factorial (- n 1)))))
;;; Calculate and print factorials
(dotimes (i 10)
(format t "~d! = ~d~%" i (factorial i)))