Help for this page

Select Code to Download


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