- or download this
use strict;
use warnings;
...
my $level = 1;
if (AL_CORP_MIN < $level) { print 1 };
- or download this
Unterminated <> operator at index.app line 6.
- or download this
use strict;
use warnings;
...
my $level = 1;
if ($level > AL_CORP_MIN) { print 1 };
- or download this
AL_CORP_MIN <= $level && $level <= AL_CORP_MAX
- or download this
use strict;
use warnings;
...
sub AL_CORP_MIN { 1 };
my $level = 1;
my $foo = $level == AL_CORP_MIN ? 'a' : 'b';
- or download this
Search pattern not terminated at index.app line 6.
- or download this
my $foo = $level == AL_CORP_MIN() ? 'a' : 'b';
- or download this
Summary of my perl5 (revision 5 version 8 subversion 8) configuration:
Platform:
...
/usr/share/perl/5.8
/usr/local/lib/site_perl
.