Help for this page

Select Code to Download


  1. or download this
    my $foo;
    
  2. or download this
    foreach ( $foo ) {
        print "$_\n";
    }
    
  3. or download this
    my @foo;
    
  4. or download this
    foreach ( @foo ) {
      print "array[x] = $_\n";
    }
    
  5. or download this
    my @array
    $array[0]       =       "";
    
  6. or download this
    #!/path/to/your/perl -w
    use strict;