mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 17:41:41 +00:00
Update smalltalk.html.markdown
This commit is contained in:
parent
89e1f40165
commit
6e056f93dc
@ -30,6 +30,7 @@ The most basic operation is to send a message to an object
|
||||
`anObject aMessage`
|
||||
|
||||
There are three sorts of messages
|
||||
|
||||
- unary - a single symbol that may be several words conjoined in what we call camelcase form, with no arguments. For example 'size', 'reverseBytes', 'convertToLargerFormatPixels'
|
||||
- binary - a small set of symbols of the sort often used for arithmetic operations in most languages, requiring a single argument. For example '+', '//', '@'. We do not use traditional arithmetic precedence, something to keep an eye on.
|
||||
- keyword - the general form where multiple arguments can be passed. As with the unary form we use camelcase to join words together but arguments are inserted in the midst of the message with colons used to separate them lexically. For example 'setTemperature:', 'at:put:', 'drawFrom:to:lineWidth:fillColor:'
|
||||
|
Loading…
Reference in New Issue
Block a user