Binary Selectors need space ....

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

Binary Selectors need space ....

James Ladd
Currently the Redline Smalltalk compiler requires a space preceding a binary selector.
This means that the following Smalltalk code won't parse:

1+1.

The following code will:

1 +1.

However, it probably reads better as:

1 + 1.

We will look into this further and adding space around a binary selector is a way forward right now.