I have very strange (quantum-like: looking at a variable causes it to exist with the right value!) behavior, which I am sure must be documented somewhere deep in the perl documentation.

I can't replicate it in any small program, so I will describe the behavior here.

Update: see my reply to myself, where a small program to replicate this behavior is shown

A package I have reads:

... my $var ... sub initialize { ... $var = 'this string'; ... } sub mysub { # print STDERR "var = $var"; print STDERR eval("...$var..."); } BEGIN { initialize() }
gives me: Use of uninitialized value in concatenation (.) or string at (eval 40) line 1. but if I uncomment the print line, everything works fine, and 'this string' prints out with no errors at all!

It is a large, spaghetti of a program, but I have verfied that deleting the one comment character produces this result.

I know that looking at a variable can cause it to get defined, but how can a simple print cause an unitialized variable to get defined with the right value?


In reply to quantum behavior in perl? by b4swine

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.