Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re^2: eval not behaving like I expected... why?

by blue_cowdawg (Monsignor)
on Mar 13, 2006 at 21:34 UTC ( [id://536393]=note: print w/replies, xml ) Need Help??


in reply to Re: eval not behaving like I expected... why?
in thread eval not behaving like I expected... why?

      I think you're forgetting that my produces a lexical variable that isn't attached to a package namespace.

That being the case, (and I'm agreeing with you) why does this work?

use Inline::Files; use Data::Dumper; open CACHE or die $!; # read access (uses $CACHE to locate file) eval join "", <CACHE>; close CACHE or die $!; print "\$var was ’$var’\n"; while (<>) { chomp; $var = $_; print "\$var now ’$var’\n"; } open CACHE, ">$CACHE" or die $!; # write access print CACHE Data::Dumper->Dump([$var],['var']); close CACHE or die $!; __CACHE__ $var = 'old value';
That's ripped right from the man page for Inline::Filss and it works! Try it!


Peter L. Berghold -- Unix Professional
Peter -at- Berghold -dot- Net; AOL IM redcowdawg Yahoo IM: blue_cowdawg

Replies are listed 'Best First'.
Re^3: eval not behaving like I expected... why?
by chromatic (Archbishop) on Mar 13, 2006 at 21:52 UTC

    The lack of my in the __CACHE__ section has a lot to do with that...

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://536393]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (4)
As of 2024-04-26 01:13 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found