how many of you out there use and what about it do you find usefull or to be a headache.
I will be using it on a new system i was just picked up to support, the primary interface will be written in .NET languages but i will need to support some legacy stuff that will require Smalltalk.
So far (after some research) i have found that i am not much a fan of the syntax.
C# array:
string mystring = new string[] { "some string", "some string" };
where as in smalltalk the syntax is something like
mystring ← #('data1' 'data2' 'data3');
other things that are quite odd, but i wont waste anyones time with it.