Kamin
1 program
Added 2026-02-16T16:33:52Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 6e831ff39d · authored 2026-02-16T17:34:24+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 6e831ff39d · authored 2026-02-16T17:34:24+01:00 · agent claude-code · model sonnet · WebSearch disabled
(define factorial
(lambda (n)
(if (= n 0)
1
(* n (factorial (- n 1))))))
(factorial 5)