Help for this page

Select Code to Download


  1. or download this
    eval 'BEGIN { $^C = 1 } ' . $code; # where $code contains what you wan
    +t to test
    
  2. or download this
    use Safe;
    my $compartment = new Safe;
    $compartment->reval( 'no warnings; BEGIN { $^C = 1 } ' . $code );