Help for this page

Select Code to Download


  1. or download this
    #!perl
    s//%/e;
    }
    
  2. or download this
    Bad evalled substitution pattern at file.pl line X
    
  3. or download this
    Perl (version 5) used to determine the value of 
    EXPR inconsistently, sometimes incorrectly using 
    the surrounding context for the determination. Now, 
    the value of EXPR (before being parsed by eval) is 
    always determined in a scalar context.
    
  4. or download this
    #!perl
    
    ...
    $foo =~ s/B/*/e;
    }
    print "($foo)\n";
    
  5. or download this
    (ABC)
    (A*main::}
    C)