Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    
    my @one=(1,2,3,4,5,6);
    print scalar(@one);
    
  2. or download this
    print $#one;