Hi
I'm just curious why "," doesn't convert object to string during concatenation?
For example I expect
'answer is ', 42
to return 'answer is 42' ��instead of 'SmallInteger are not indexable'.
Of course you could say that
'answer is ', 42 asString
does the job... but still why not to put asString in concatenation method