Introduction
How do I submit bug reports and patches for GNU Smalltalk?
By Paolo Bonzini - Posted on June 25th, 2007
Tagged:
There is a mailing list. See also the community section of this web site.
How do I get GNU Smalltalk?
By Paolo Bonzini - Posted on June 25th, 2007
Tagged:
See the download section of this site.
If you are interested in development versions, you might also use the CVS and Arch repositories that host the most recent code for GNU Smalltalk.
Is there a GNU Smalltalk tutorial?
By Paolo Bonzini - Posted on June 25th, 2007
Tagged:
Yes, there is a tutorial that is part of the GNU Smalltalk manual. See here for an online version.
How does Smalltalk look like?
By Paolo Bonzini - Posted on June 25th, 2007
Tagged:
Let's define a class called Person, holding a name and an age. (Note: this code only works in Smalltalk 2.95a and later. The syntax for previous versions is more verbose and less clear).
Object subclass: Person [
| name age |
Person class >> name: aString age: anInteger [
^self new name: aString; age: anInteger; yourself
]
name [ ^name ]
name: aString [ name := aString ]
age [ ^age ]
age: anInteger [ age := anInteger ]
printOn: aStream [
aStream << ('%1 (%2)' % {name. age})
]
]My question is not listed here!
By Paolo Bonzini - Posted on June 20th, 2007
Tagged:
Write it in a comment to this question.
