Help for this page

Select Code to Download


  1. or download this
    use Safe;
    $compartment = new Safe('userMath');
    $result = $compartment->reval($expressionToEval);
    
  2. or download this
    $compartment->permit(qw(sqrt));
    
  3. or download this
    $compartment->share_from('Math::Complex', [ '&make' ]);
    
  4. or download this
    $compartment->reval('use Math::Complex');