LISP/360
1 program
Added 2026-02-10T20:35:37Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: LISP 360, IBM LISP/360
Provenance: commit f05a12eaee · authored 2026-02-10T21:36:17+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 f05a12eaee · authored 2026-02-10T21:36:17+01:00 · agent claude-code · model sonnet · WebSearch disabled
(DEFINE FACTORIAL (LAMBDA (N)
(COND
((ZEROP N) 1)
(T (TIMES N (FACTORIAL (SUB1 N)))))))
(FACTORIAL 5)