in reply to Re^7: How to look for two different file extensions?
in thread How to look for two different file extensions?
Perl 5 does EXACTLY the right thing and is production ready. I have never hoped that your code would ever work in Perl5. Your simplified example is not the real world.for (1..6) { print "$_\n" if $_ == 2 or $_ == 3 or $_ == 5 or $_ == 8 ; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^9: How to look for two different file extensions?
by Laurent_R (Canon) on Mar 10, 2017 at 00:05 UTC | |
|