At 01:07 +0200 2002.09.18, Louis Pouzin wrote:
># "moon" is not exported by the data_pool module.

Yep!

>@EXPORT_OK  = qw($moon); # fails

>use data_pool qw(moon); # fails

You want:

        use data_pool qw($moon);

You need the '$'.  You are requesting a subroutine named "moon", when what
you are offering for export, and want, is a scalar variable named "$moon".

-- 
Chris Nandor                      [EMAIL PROTECTED]    http://pudge.net/
Open Source Development Network    [EMAIL PROTECTED]     http://osdn.com/

Reply via email to