in reply to Trivial style ideas

Actually, in 5.6 the way to do this is:
package Foo; use strict; use warnings FATAL => 'all'; # I hate warnings. use Exporter; our @ISA = qw( parent ); our @EXPORT_OK = qw( export these ); our $VERSION = "1.0"; #etc

Replies are listed 'Best First'.
Re (tilly) 2: Trivial style ideas
by tilly (Archbishop) on Jan 23, 2001 at 06:55 UTC