in reply to Passing parameters to a module's import function
If you are setting data within MyModule as constants during running then other methods may be better.
If however you want the data in the anonymous hash to be passed to a function which decides on exporting methods (which is what Exporter and the import method are usually for) the you may want to rethink if exporting in that way is what you want. Then if you still want to do it step back and think again. And if you still have a good reason to do it that way that go ahead and follow the other advice above.# simple setting use MyModule qw/function/; $MyModule::foo = 1; $MyModule::bar = 'two'; function(); # or simple function args use MyModule qw/function/; function( foo => 1, bar => 'two' ); # or OO use MyModule; my $instance = MyModule->new( foo => 1, bar => 'two' ); $instance->function;
|
|---|