Reputation: 1013
How do I send parameters in smalltalk:
Upvotes: 1
Views: 1747
Reputation: 1137
You can safely assume that all parameters in smalltalk are passed by reference.
There's only one exception for immediate object (smallintegers) which are passed by value, but its an implementation detail (different implementations could have different kinds of immediate object classes).
Upvotes: 6