Help for this page
package Foo ; use strict ; use warnings ; our $VERSION = '1.75' ;
package Bar ; use base 'Foo' ; ... use warnings ; use strict ; # Does not report missing 'our' before $VERSION
use lib '.' ; ... print "version Foo = $Foo::VERSION\n" ; print "version Bar = $Bar::VERSION\n" ;