Thanks, Chris, for pinpointing the inconsistency. It now works perfect. - - - On Wed, 18 Sep 2002 08:34:47 -0400, Chris Nandor wrote:
>>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". ====