in reply to Re^2: Problems with 'our' definition with perl 5.00503
in thread Problems with 'our' definition with perl 5.00503

You should send in a documentation patch for perlvar then, because I pulled this line from there:
This can be used to determine whether the Perl interpreter exe- cuting a script is in the right range of versions. (Mnemonic: use ^V for Version Control.) Example: warn "No \"our\" declarations!\n" if $^V and $^V lt v5.6.0;

Replies are listed 'Best First'.
Re^4: Problems with 'our' definition with perl 5.00503
by etcshadow (Priest) on Jun 30, 2005 at 18:50 UTC
    Wow... that's an escalation from funny to tragic.
    me@host> perl -le 'print $]; print $^V; warn "No \"our\" declarations! +\n" if $^V and $^V lt v5.6.0;' 5.00503 me@host>
    ------------ :Wq Not an editor command: Wq