Help for this page

Select Code to Download


  1. or download this
    sub eval_this {
          my $code = shift;
    ...
          eval $code;
          die ("Error: $@") if $@;
    }
    
  2. or download this
    eval_this('our $var; print $var');