|
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.
|