March 11, 2013
9:40 p.m.
Hi all, There is something that I do not understand in Dictionary. I am not sure this is what we want. The following code: === Dictionary new addAll: {#a -> #b. #c -> #d }; yourself === returns "a Dictionary(1->#a->#b 2->#c->#d )" where I would like to have "a Dictionary(#a->#b #c->#d )". Ok, I do === {#a -> #b. #c -> #d } asDictionary === and it works. Jannik