in reply to Re: Trying to be stricter...
in thread Trying to be stricter...
I'd have:$Foo = 'bar';
That way, you won't accidentally alter the value of FOO elsewhere in the program. Plus, it'll be interpolated as a literal, so you might actually gain some speed.use Exporter; @ISA = qw(Exporter); @EXPORT_OK = qw(FOO); use constant FOO => 'bar';
stephen
|
---|