Help for this page

Select Code to Download


  1. or download this
    my $coderef = eval "BEGIN{goto skip;}sub { $code } BEGIN{skip: print '
    +Skipped!'}";
    
  2. or download this
    use Safe;
    
    ...
    my $coderef = $compartment->reval("sub{$code}") or die "$@";
    
    $coderef->(); # execute the code