in reply to Re (tilly) 1: "use vars" will remain (Re: Win32 EXPORT_OK problems)
in thread Win32 EXPORT_OK problems
While the small module I supplied solves the main backwards compatibility issue, there is no way to tie out older Perl's to such (ab)use.use strict; package Foo; our $foo = "Hello world\n"; package Foo::Bar; print $foo; package Foo::Baz; print $foo;
|
|---|