my @a = qw/a b c/; print "Here are the elements. Notice the comma ", @a; print "Here's the size. Notice the dot " . @a; #### print "Notice the comma, but also 'scalar' ", scalar @a;