in reply to Re (tilly) 1: "use vars" will remain (Re: Win32 EXPORT_OK problems)
in thread Win32 EXPORT_OK problems

There is a neat "feature" I was missing. The following code does something interesting:
use strict; package Foo; our $foo = "Hello world\n"; package Foo::Bar; print $foo; package Foo::Baz; print $foo;
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.