Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re^6: Perl is not Dynamically Parseable

by blokhead (Monsignor)
on Oct 14, 2009 at 02:57 UTC ( [id://801010]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    BEGIN {
      eval "sub foo {}" if rand() < 0.5;
    }
    foo();
    
  2. or download this
    if (rand() < 0.5) {
      1 while 1;
    }
    
  3. or download this
    BEGIN {
      my $x = "... arbitrary perl code ...";
      eval "sub foo {}" if eval $x;
    }
    foo();
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://801010]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (4)
As of 2024-04-25 22:26 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found