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