Why I Like Perl
First
Previous
ToC
Next
Last
Funny Sigils
tell you what to expect
$ means a scalar
@ means a list
but remember that a list can have zero items
or one
% means a hash
make it possible to do interpolation
print "Hi, my name is $name!";
remembering the different contexts will save you trouble
Slide 22 of 47