in reply to Maintenance vs. Programming style
For example, one change I am forever making is to get rid of escaped quotes within a quoted string. I consider this hard to understand:
print "I said \"Hi\". You said \"Bye\".";
But, this is much easier to understand.
print qq{I said "Hi". You said "Bye".};
|
|---|