in reply to Re (tilly) 1: order of strict and package
in thread order of strict and package
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 |