Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    my $level = 1;
    
    if (AL_CORP_MIN < $level) { print 1 };
    
  2. or download this
    Unterminated <> operator at index.app line 6.
    
  3. or download this
    use strict;
    use warnings;
    ...
    my $level = 1;
    
    if ($level > AL_CORP_MIN) { print 1 };
    
  4. or download this
    AL_CORP_MIN <= $level && $level <= AL_CORP_MAX
    
  5. or download this
    use strict;
    use warnings;
    ...
    sub AL_CORP_MIN { 1 };
    my $level = 1;  
    my $foo = $level == AL_CORP_MIN ? 'a' : 'b';
    
  6. or download this
    Search pattern not terminated at index.app line 6.
    
  7. or download this
    my $foo = $level == AL_CORP_MIN() ? 'a' : 'b';
    
  8. 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
        .