- or download this
@ARGV ~~ /\.mdb$/i
- or download this
if (grep { not /\.mdb$/i } @ARGV) {
print STDERR "All parameters must be MDB files\n";
exit;
}
- or download this
@ARGV ~~ /\.mdb\z/
or die "All parameters must be MDB files"
- or download this
@ARGV ~~ sub {$_[0] !~ /\.mdb$/i}
and die "All parameters must be MDB files"
- or download this
@ARGV !~~ /\.mdb$/i
and die "All parameters must be MDB files";
- or download this
given($foo) {
when (! /some regexp/) {...}
...
}
- or download this
given($foo) {
when ! (/some regexp/) {...}
...
}