in reply to using 'our' on Win32 vs Unix

Is this due to perl version / build differences?
Correct - our wasn't introduced into perl until 5.6.0. In the mean time you could use vars or just fully declare your variables
use vars qw/%hash/; %hash = ( ... ); ## or %Your::Package::hash = ( ... );
See. perldelta on your windows machine to for more information on the addition of our and any other changes between the two versions.
HTH

_________
broquaint

Replies are listed 'Best First'.
Re: Re: using 'our' on Win32 vs Unix
by djbiv (Scribe) on Jul 22, 2003 at 16:01 UTC
    Thanks broquaint! ~Dan