Help for this page

Select Code to Download


  1. or download this
    foreach (@ARGV) { ++$Y{$y}, next if $y eq $_; }
    
  2. or download this
    foreach (@ARGV) {
        if ($y eq $_) {
    ...
            next;
        }
    }
    
  3. or download this
    while (@ARGV && $ARGV[0] =~ /^-/) {
        my $arg = shift @ARGV;
    ...
        ++$debug, next if $arg eq '-d';
        die "Unknown option '$arg'\n";
    }