BMaximus has asked for the wisdom of the Perl Monks concerning the following question:
The printout should be 9. Now when I use Safe on a module it doesn't turn out quite the same way.my $c; my $ev = '$c = 4 + 5'; eval($ev); print $c;
When $c is printed out its nothing. Whats going on in Safe? Whats an example of its proper use?my $c; my $cpt = new Safe; $cpt->share('$c'); my $ev = '$c = 4 + 5'; $cpt->reval($ev); print $c;
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: The proper use of Safe
by MeowChow (Vicar) on Mar 31, 2001 at 03:46 UTC |