show/hide this revision's text 2 fixed split infinitive

The fact that single quotes can be used to replace :: in identifiers.

Consider:

use strict;
print "$foo";        #-- Won't compile under use strict
print "$foo's fun!"; #-- Compiles just fine, refers to $foo::s

Leading to the following problem:

use strict;
my $name = "John";
print "$name's name is '$name'";
# prints:
#  name is 'John'

The recommended way to avoid this is to use braces around your variable name:

print "${name}'s name is '$name'";
# John's name is 'John'

And to also to use warnings, since it'll tell you about the use of the undefined variable $name::s

show/hide this revision's text 1

The fact that single quotes can be used to replace :: in identifiers.

Consider:

use strict;
print "$foo";        #-- Won't compile under use strict
print "$foo's fun!"; #-- Compiles just fine, refers to $foo::s

Leading to the following problem:

use strict;
my $name = "John";
print "$name's name is '$name'";
# prints:
#  name is 'John'

The recommended way to avoid this is to use braces around your variable name:

print "${name}'s name is '$name'";
# John's name is 'John'

And to also use warnings, since it'll tell you about the use of the undefined variable $name::s