up vote 6 down vote favorite
share [g+] share [fb]

Why doesn't Perl 5 give me the name of the variable it is complaining about?

perl5.8.9 -we 'my $u; print "$u\n"'
Use of uninitialized value in concatenation (.) or string at -e line 1.
link|improve this question

55% accept rate
2  
I'm kind of new here, so not entirely certain about the ways of stackoverflow, but isn't this supposed to be a community wiki post? – szbalint Sep 3 '10 at 18:00
2  
@szbalint No, community wiki posts are for cowards who are afraid of being downvoted or discussion posts where it is a good idea to lower the reputation bar to being able to edit the question and answers. Question/answer posts are encouraged by the FAQ: stackoverflow.com/faq – Chas. Owens Sep 3 '10 at 18:22
2  
@Chas: szbalint is correct; if one is posing a question to immediately answer it oneself, it is polite to mark the answer CW so as to not rep-whore too much. – Ether Sep 3 '10 at 19:27
1  
@brian d foy It also doesn't tell you to make it one. The purpose of community wikis is to lower the reputation bar to editing questions and answers (generally for discussion style posts), not to take away the incentive to asking and answering questions. – Chas. Owens Sep 4 '10 at 5:38
1  
@Ether I had already hit the rep cap before I posted the question. If people don't want to upvote questions like this they are free not to do so. – Chas. Owens Sep 4 '10 at 5:43
show 5 more comments
feedback

1 Answer

It has since version 5.10 which was released in 2007, it is time to upgrade (5.12.2 is coming out shortly).

perl5.10.0 -we 'my $u; print "$u\n"'
Use of uninitialized value $u in concatenation (.) or string at -e line 1.
link|improve this answer
yeah but why didn't it do it before that? – frankc Sep 3 '10 at 19:11
2  
Silly answer: because the code wasn't written to do it yet. My best guess is that it wasn't seen as important. You could ask the same question about why we didn't have strict until Perl 5. – Chas. Owens Sep 3 '10 at 19:17
4  
@user275455 Somebody had to have the knowledge and the time and the inclination to make it do that. Its non-trivial for Perl to figure out what triggered the warning as you can see by looking at the patch which implemented it. perl5.git.perl.org/perl.git/commit/… – Schwern Sep 4 '10 at 3:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.