Help for this page

Select Code to Download


  1. or download this
    #!/usr/local/bin/perl
    use strict;
    ...
      print $array [$a], "\n";
      }
    }
    
  2. or download this
    foreach print value of a: 1
    while print value of a: 1
    ...
    foreach print value of a: 8
    while print value of a: 8
    62
    
  3. or download this
    my $value = $array[$_] for @list;
    
  4. or download this
    #!/usr/bin/perl
    use strict;
    ...
    
    __END__
    
  5. or download this
    $ perl 1140597.pl
    $a: 1 $array[1] 543
    ...
    $a: 5 $array[5] 623
    $a: 8 $array[8] 62
    $