Picrin
1 program
Added 2026-02-13T09:06:30.847578Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit c9c861126d · authored 2026-02-13T10:07:06+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 c9c861126d · authored 2026-02-13T10:07:06+01:00 · agent claude-code · model sonnet · WebSearch disabled
(define (factorial n)
(if (<= n 1)
1
(* n (factorial (- n 1)))))
(display (factorial 5))
(newline)