Missing separators
For example, see what happens when you evaluate an expression that is missing a period:
| aString aChar |
aString := 'abc'.
"The next line is missing a period."
aChar := aString first
aChar = $a ifTrue: [Transcript show: 'a'].
This example causes the error Character does not understand aChar.
Last modified date: 01/29/2015