Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: Error on comment line

by ferreira (Chaplain)
on Jan 31, 2007 at 09:45 UTC ( [id://597513]=note: print w/replies, xml ) Need Help??


in reply to Error on comment line

Maybe this comment is not a comment indeed. It may be inside a larger quote construct that does interpolation, like

my $a = " # this is a comment, but not really (with $interpolation) $a = 3 "; print $a
or
printf <<PERL, "not"; for (@html) { pretty_print($_) } # a comment is %s always a $comment # subtler because of here-docs PERL

Any of these would trigger similar warnings, due to the unitialized contents in $interpolation, $a and $comment.

Replies are listed 'Best First'.
Re^2: Error on comment line
by ikegami (Patriarch) on Jan 31, 2007 at 16:19 UTC
    Being a runtime warning, the line number in the message would be the line number of the start of the statement. In the first snippet, the warning would appear to originate from my $a = ", not the "comment" line.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (9)
As of 2024-04-23 09:06 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found