in reply to Avoiding Globals with OO Perl
package Variables; use strict; use warnings; our $foo = 'Foo'; our $bar = 'Bar'; 1; [download]
use Variables; use strict; use warnings; print $Variables::foo; [download]