Smalltalk-72
1 program
Added 2026-02-08T21:41:14Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 863323977b · authored 2026-02-08T22:42:00+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
Provenance: commit 863323977b · authored 2026-02-08T22:42:00+01:00 · agent claude-code · model sonnet · WebSearch disabled
to factorial n (
n = 1 ifso: (↑ 1)
n = 0 ifso: (↑ 1)
↑ n * factorial (n - 1)
)
factorial 5