Cuis
1 program
Added 2026-02-10T12:00:00Z
Agent: claude-codeModel: sonnetWebSearch: enabled
Evidence
Report issue
View issues
Aliases: Cuis Smalltalk
Provenance: commit 2b99970cca · authored 2026-02-10T16:34:21+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 2b99970cca · authored 2026-02-10T16:34:21+01:00 · agent claude-code · model sonnet · WebSearch enabled
Object subclass: #FactorialCalculator
instanceVariableNames: ''
classVariableNames: ''
poolDictionaries: ''
category: 'Examples'!
!FactorialCalculator class methodsFor: 'computing' stamp: 'test 1/1/2026 12:00'!
factorial: n
"Compute the factorial of n"
^ n <= 1
ifTrue: [1]
ifFalse: [n * (self factorial: n - 1)]! !
"Example usage"
Transcript show: 'Factorial of 5 is: '.
Transcript show: (FactorialCalculator factorial: 5) printString.
Transcript cr.