Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: problem referencing global variable in self-written module

by HuckinFappy (Pilgrim)
on Jun 08, 2006 at 01:07 UTC ( #554193=note: print w/replies, xml ) Need Help??


in reply to problem referencing global variable in self-written module

Oh, to be a monk of high enough ranking to edit your post and add the <code> tags so it would be readable... Regardless...I'll try and help. You did tell perl that Fleece.pm exports things, by:
use Exporter;
But nowhere do you tell it *what* to export.
@EXPORT = qw( $fleece );
Or better:
@EXPORT_OK = qw( $fleece );
This would be slightly better since users would have to specifically ask for $fleece to get it:
use Fleece qw( $fleece );
It's considered good form to not clutter of someone's namespace recklessly. I'd suggest a read of the Exporter Documentation would help you understand all this a little better. HTH, Jeff

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://554193]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this? | Other CB clients
Other Users?
Others chanting in the Monastery: (2)
As of 2023-05-31 00:45 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found

    Notices?