http://www.perlmonks.org?node_id=1044150


in reply to what does "use of uninitialized value" really mean?

Tip #1 from the Basic debugging checklist: use diagnostics will give a more verbose explanation of the warning. See also perdiag. You eliminate the warning by assigning a value to a variable. Perhaps you are confusing variable declaration with initialization. You should show a code example of where you get the warning.

  • Comment on Re: what does "use of uninitialized value" really mean?