Help for this page

Select Code to Download


  1. or download this
    while (<>) {
    }
    
  2. or download this
    while (defined($_ = <ARGV>)) {
        ();
    }
    
  3. or download this
      perl -MO=Deparse test.pl
    
  4. or download this
    #!/usr/bin/perl
    use strict;
    ...
    foreach my $m (@arr1) {
       print $m, "\n";
    }