RE: How to put a global variable in a package, accessible to users of that package?
- From: stewart.anderson@xxxxxxxxxxxxx ("Stewart Anderson")
- Date: Fri, 31 Oct 2008 09:25:20 -0000
From: mrstevegross [mailto:mrstevegross@xxxxxxxxx]users of
Sent: 30 October 2008 18:43
To: beginners@xxxxxxxx
Subject: How to put a global variable in a package, accessible to
that package?That looks interesting. How do people use that kind of constant
I have a package named "Foo" in which I want to define some package-
level constants (such as $VAR="soemval"). I want those constants
available to users of package Foo, so the following code would work:
=== foo.pl ===
package foo;
use constant VAR => "someval";
=== bar.pl ===
use foo;
print $foo::VAR;
It doesn't appear to be working; it compiles ok, but it prints
nothing. I thought it would print "someval".
assignment. I can see uses for it, but would be interested to hear what
others use this technique for.
Ta
Stu
Information in this email including any attachments may be privileged, confidential and is intended exclusively for the addressee. The views expressed may not be official policy, but the personal views of the originator. If you have received it in error, please notify the sender by return e-mail and delete it from your system. You should not reproduce, distribute, store, retransmit, use or disclose its contents to anyone. Please note we reserve the right to monitor all e-mail communication through our internal and external networks. SKY and the SKY marks are trade marks of British Sky Broadcasting Group plc and are used under licence. British Sky Broadcasting Limited (Registration No. 2906991), Sky Interactive Limited (Registration No. 3554332), Sky-In-Home Service Limited (Registration No. 2067075) and Sky Subscribers Services Limited (Registration No. 2340150) are direct or indirect subsidiaries of British Sky Broadcasting Group plc (Registration No. 2247735). All of the companies mentioned in this paragraph are incorporated in England and Wales and share the same registered office at Grant Way, Isleworth, Middlesex TW7 5QD.
.
- Follow-Ups:
- References:
- Prev by Date: Re:confused about reference
- Next by Date: RE: How to put a global variable in a package, accessible to users of that package?
- Previous by thread: How to put a global variable in a package, accessible to users of that package?
- Next by thread: Re: How to put a global variable in a package, accessible to users of that package?
- Index(es):
Relevant Pages
|