export-tags

%EXPORT_TAGS problem

I have a module something like this, in "lib", called Fool.pm, which is based on the source code of CGI.pm (since that was the first module I thought of when I was thinking about exporting tags): package Fool; require Exporter; @ISA = qw(Exporter); @EXPORT_OK = qw/raspberry/; %EXPORT_TAGS = ( ':all' => \@EXPORT_OK, ); 1; and a tes...