Emil Perhinschi wrote:
> 
> Hi!

Hello,

> I'm writing a rather complicated script, reading bibtex (my code) and
> xml (XML::Grove) files etc.
> 
> I have to "use strict" and "my $variable" in order to keep references in
> check, as there are lots of them.
> 
> I want to define some "global" variables in the main script instead of
> passing them arround by reference to subs defined in modules.
> 
> Is there another, better, way to define them except like this:
> 
> my $::blabla = "somevalue";
> 
> and then reading the values
> 
> my $anotherone = $::blabla;

our $blabla;


perldoc -f our



John
-- 
use Perl;
program
fulfillment

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to