Re: our..... Lou's code

2005-11-28 Thread Bob Showalter
Lou Hernsen wrote: - Original Message - From: "Bob Showalter" <[EMAIL PROTECTED]> To: "Lou Hernsen" <[EMAIL PROTECTED]> Cc: Sent: Sunday, November 27, 2005 12:36 PM Subject: Re: our.. Lou Hernsen wrote: ok after reading about "our" fact:

RE: our..... Lou's code ( was: Need help with making a Modules )

2005-11-28 Thread Charles K. Clarkson
Lou Hernsen <> wrote: : Bob Showalter <> wrote: : : : A variable declared with "my" is only accessible within the : : enclosing file, block, or eval. : : File is the entire program. Yes. : like a global var? No. Globals are in the symbol table and can be accessed from *outside* th

Re: our..... Lou's code

2005-11-28 Thread Lou Hernsen
- Original Message - From: "Bob Showalter" <[EMAIL PROTECTED]> To: "Lou Hernsen" <[EMAIL PROTECTED]> Cc: Sent: Sunday, November 27, 2005 12:36 PM Subject: Re: our.. > Lou Hernsen wrote: > > ok after reading about "our" > >

Re: our..

2005-11-27 Thread Bob Showalter
Lou Hernsen wrote: ok after reading about "our" fact: I use all global vars in the main program. conclusion I need to list all the vars in the module as our in main my $foo in mod our $foo this will allow the vars to be used by both programs? No. A variable declared with "my" is only access