in reply to Re: Re: Re: global variables
in thread global variables
And the contents of inc.conf...#!/usr/bin/perl use strict; use warnings; use "inc.conf"; our $var; print $var , "\n"; exit;
Because I still get a syntax error. Forgive me if I am a bit dense :)#!/usr/bin/perl use strict; use warnings; our $var = "blah"; 1;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: Re: global variables
by tinita (Parson) on May 31, 2004 at 14:58 UTC | |
|
Re: Re: Re: Re: Re: global variables
by Happy-the-monk (Canon) on May 31, 2004 at 14:58 UTC |