Re: Var's in extern file

2002-12-03 Thread Todd W
"Beau E. Cox" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hi - > > Perl is not like a typical compiled language, for example, c/c++. > It really doesn't have the typical 'include' functionality. > The 'use' and 'require' keywords are for 'including' perl > m

Re: Var's in extern file

2002-12-01 Thread John W. Krahn
Jens Irrgang wrote: > > Hello, Hello, > I'm writing a script (what a surprise). > I want to use an extern file to store my variables. Like a config-file. > But with -use strict- it doesn't work. > > I've tried it with use and require. But I get always this error-message: > Global symbol "$numme

RE: Var's in extern file

2002-12-01 Thread Beau E. Cox
Hi - Perl is not like a typical compiled language, for example, c/c++. It really doesn't have the typical 'include' functionality. The 'use' and 'require' keywords are for 'including' perl modules (normally with the .pm suffix) that reside in the @INC path (type 'perl -V' to see your @INC path). M