"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
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
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