Quote:
Originally Posted by Googi
Seeing someone going out of their way to line up equal signs or any other operator unless they're assigning some huge number of variables/array indices/etc always strikes me of showoffish. Even if there is a huge number of assignments I still don't like it. It might make the code marginally more readable, but it makes it a pain to edit.
|
The problem with code readability is that people don't agree what is readable.
PHP Code:
function foo( bar )
{
doSomething( pi );
}
is perfectly readable for myself and Jave (who also scripts on Vesporia, albeit lightly). However, most think that's hard to read
