Is

[[[
lan��gua��ge=��Sma��lltalk
g := RTGrapher new.

ds := RTData new.
ds points: 'What a beautiful day' substrings.
ds y: [ :aString | aString size ].
g add: ds.

g
]]]

any better?

Phil

On Tue, Jun 6, 2017 at 9:19 AM, Alexandre Bergel <alexandre.bergel@me.com> wrote:
Hi!

I have the following script:

-=-=-=-=-=-=-=-=-=-=-=-=
Any objects may be provided in place of this array. For example:

[[[
g := RTGrapher new.

ds := RTData new.
ds points: 'What a beautiful day' substrings.
ds y: [ :aString | aString size ].
g add: ds.

g
]]]
-=-=-=-=-=-=-=-=-=-=-=-=

And it produces:��


Any idea where there is no syntax highlighting? In some other part of the document I go get syntax highlighting.��
How bizarre���

Alexandre