in reply to Re^2: OUR declaration
in thread OUR declaration

Needed? You need a global variable if you are going to set one with special meaning to Perl, or to an external module. But even then you don't need our to set those globals. (The most common globals that people do this with are @ISA, $VERSION, @EXPORT and @EXPORT_OK.)

For instance a lot of people tend to write:

package Foo; use strict; our @ISA = 'Bar'; ...
instead of
package Foo; use strict; use vars qw(ISA); @ISA = 'Bar'; ...
so you can save a line. However you can solve that problem in other ways, for instance:
package Foo; @ISA = 'Bar'; use strict; ...
or
package Foo; use strict; @Foo::ISA = 'Bar'; ...
or in this case
package Foo; use strict; use base 'Bar'; ...
So our is always pretty gratuitous.