It is almost always possible to convert m += ([ "foo":bar ]); to m["foo"] = bar;
The exception is when the mapping in m is also stored in another variable, and you really want to have two different mappings after the +=.
/ Per Hedbor ()
Previous text:
2003-01-29 11:32: Subject: Re: reasons why pike is better than python?
what would an experienced programmer use in such a case then?
/ Brevbäraren