in reply to Re: package compiling
in thread package compiling
package Model::Conf; use Exporter 'import'; our @EXPORT = qw( $conf ); our $conf = { 'somevar' => 'somevalue' }; $conf->{'foo'} = bar(); sub bar() { return 'bar'; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: package compiling
by afoken (Chancellor) on Apr 17, 2011 at 07:10 UTC | |
by Anonymous Monk on Apr 22, 2011 at 11:56 UTC | |
by afoken (Chancellor) on Apr 22, 2011 at 15:57 UTC |