in reply to use strict and require
Now, instead of require "include.pl";, you do use include; and it should work. (Note the untested clause in my sig.)package include; use vars qw(@ISA @EXPORT) use Exporter; @ISA = qw(Exporter); @EXPORT = qw( %SETTINGS ); # Your stuff here 1;
------
We are the carpenters and bricklayers of the Information Age.
Don't go borrowing trouble. For programmers, this means Worry only about what you need to implement.
Please remember that I'm crufty and crochety. All opinions are purely mine and all code is untested, unless otherwise specified.
|
|---|