Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: Print the Global special constant Variable

by Anonyrnous Monk (Hermit)
on Feb 09, 2011 at 12:56 UTC ( [id://887186]=note: print w/replies, xml ) Need Help??


in reply to Print the Global special constant Variable

If you absolutely must interpolate the constant (I'm not sure why, and what's wrong with your first solution using concatenation...), you can say:

print "This is the package => ${\__PACKAGE__} <="; # or print "This is the package => @{[__PACKAGE__]} <=";

The idea is just to create a reference to whatever you want to interpolate, and then dereference it using the double-quote-interpolated sigils ${...} or @{...}.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (5)
As of 2024-04-24 03:47 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found