in reply to In Love With Double Quotes
my $foo = "fhwgads"; if ( $foo eq "fhwgads" ) { print "fh" . "wg" . "ads"; }
Doesn't the second example look *so* much better? Ahh, the beauty. Maybe I like whitespace a little too much?my $foo = 'fhwgads'; if ( $foo eq 'fhwgads' ) { print 'fh' . 'wg' . 'ads'; }
--Dan
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: In Love With Double Quotes
by trammell (Priest) on Aug 08, 2005 at 18:02 UTC | |
Re^2: In Love With Double Quotes
by Anonymous Monk on Aug 09, 2005 at 08:53 UTC |