Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    
    use strict;
    ...
    my @ary2 = (1,3,5);
    
    print scalar(@ary1), " ", scalar(@ary2), "\n";
    
  2. or download this
    alakaboo:~$ ./test.pl
    6 3
    5 2