Feb. 11, 2015
4:33 a.m.
I'm away from my Pharo computer to double-check, but is it just that is how a Color object displays itself ? Maybe have a look at Color>>printOn: cheers -ben On Wed, Feb 11, 2015 at 9:38 AM, Andy Burnett < andy.burnett@knowinnovation.com> wrote:
I would like to create an array with a collection of colour values.
I tried both:
colorList := {Color blue} and colourList := {Color named: #blue.}.
In both cases it evaluates to 'Color blue' rather than the Color object.
What surprised me was that:
charList := {Character digitValue:35. Character digitValue:33.}.
Does evaluate to an array of two characters. What is going on?
Cheers Andy á§