diff options
author | Chip Salzenberg <chip@perl.com> | 1996-11-19 12:07:00 +1200 |
---|---|---|
committer | Chip Salzenberg <chip@atlantic.net> | 1997-02-22 02:41:53 +1200 |
commit | 3561ff8967661c363e907527e81e69a79a1e4ef2 (patch) | |
tree | 3fbd78268f6864866751b80d0975be994e583f40 /lib/vars.pm | |
parent | d6abf24bd347fe18bf5a72836211f1d5f86fed6e (diff) | |
download | perl-3561ff8967661c363e907527e81e69a79a1e4ef2.tar.gz |
C<use vars> didn't work until 5.002
Diffstat (limited to 'lib/vars.pm')
-rw-r--r-- | lib/vars.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/vars.pm b/lib/vars.pm index f0a6e54988..0b7dacc751 100644 --- a/lib/vars.pm +++ b/lib/vars.pm @@ -29,7 +29,8 @@ ensuring their availability to to the later-loaded routines. See L<perlmod/Pragmatic Modules>. =cut -require 5.000; + +require 5.002; use Carp; sub import { |