in reply to Bulk hash population order
The point here is to make that assignment statement as simple to read as possible so there is no confusion about what you are doing there and why.my %defaults = get_defaults(); my %bighash = get_big_hash(); # Set default values to our bighash %bighash = (%bighash, %defaults);
|
|---|