We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
#Class SmallInt
[back]
printString (self < 0) ifTrue: [ ^ '-' + self negated printString]. (self < 10) ifTrue: [ ^ (Char new: (self + 48)) asString ] ifFalse: [ ^ (self quo: 10) printString + (self rem: 10) printString ]
There was an error while loading. Please reload this page.