in reply to Re^3: What is code readability?
in thread What is code readability?

some_function(some_variable, some_other_variable, and_yet_another_variable, and_one_more_for, luck);
...getting better...
some_function( filename => $some_variable, address => $some_other_variable, amount => $and_yet_another_variable, phone_num => $and_one_more_for, diameter => $luck );

Replies are listed 'Best First'.
Re^5: What is code readability?
by runrig (Abbot) on Nov 13, 2012 at 23:30 UTC
    And that bites when you want to cut the first or last, or paste another first or last, argument. I prefer the args on separate lines, and indenting a normal (4 or whatever the standard) number of spaces.