in reply to Re (tilly) 1: order of strict and package
in thread order of strict and package

Tilly, Why do you "break strict" in your header?

I tend to do the following, and am wondering if I am doing something wrong...

package Foo; use strict; use Exporter; use vars qw(@EXPORT_OK @ISA $foo $bar); @ISA = qw(Exporter); @EXPORT_OK = qw($foo $bar);

Replies are listed 'Best First'.
Re (tilly) 3: order of strict and package
by tilly (Archbishop) on Jun 01, 2001 at 21:34 UTC
    I used to do that as well. I changed because it is less typing and as a way of hinting that @ISA and @EXPORT_OK are not to be assigned to within the module. YMMV.