or download this
my @a = (1 .. 5);
say $a[0]; # '$' sigil, we are picking out a scalar
say @a[3,1,2]; # '@' sigil, we are picking out a list (an array-like
+ structure)
...
say $h{a}; # '$' sigil, we are picking out a scalar
say @h{qw{b c}}; # '@' sigil, we are picking out a list
say %h{qw{a c}}; # '%' sigil, we are picking out a hash slice (a hash-
+like structure)