I'm trying to learn some smalltalk programming.... I'm trying to create a list of objects of type myClass. What's the best way to do this?
I have the following:
| list |
list := OrderedCollection new.
Correct me if I'm wrong.
So how should I add elements to my list?