User's Guide

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.


[ Top of Page | Previous Page | Next Page | Table of Contents | Index ]