Help for this page

Select Code to Download


  1. or download this
    my $c;
    my $ev = '$c = 4 + 5';
    eval($ev);
    print $c;
    
  2. or download this
    my $c;
    my $cpt = new Safe;
    ...
    my $ev = '$c = 4 + 5';
    $cpt->reval($ev);
    print $c;