in reply to Re^2: Passing variables
in thread Passing variables

That error message would have simplified the answer. From perldoc -f require,

The file must return true as the last statement to indicate successful execution of any initialization code, so it's customary to end such a file with "1;" unless you're sure it'll return true otherwise. But it's better just to put the "1;", in case you add more statements.

After Compline,
Zaxo

Replies are listed 'Best First'.
Re^4: Passing variables
by intranetman (Acolyte) on Sep 15, 2004 at 19:32 UTC
    Thanks for the reply everything works well now. Interesting usages. Perldoc = Savior. Much appreciated.