Your eval statement declares several lexical variables, but then you expect them to be available via the symbol table as globals! That won't work, just as the following won't work:
my $foo = "blah"; print $main::foo; ## whoops, not the same variable
In addition, eval creates a fresh lexical scope, so the scope of the lexical variables is only within that eval. You can't get such a thing to work with lexicals + eval:
eval 'my $foo = 1'; print $foo; ## whoops, outside of $foo's scope
It defeats one of the major purposes of lexical variables (that is, compile-time checking of variable bindings). You'll have to use either globals, or perhaps a hash of values if you want to instantiate variables via eval (and have them visible from outside the eval).

blokhead


In reply to Re: eval not behaving like I expected... why? by blokhead
in thread eval not behaving like I expected... why? by blue_cowdawg

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.