in reply to variables across modules
use strict; use test_module; our %hash = ( foo => 'bar', bar => 'foo' ); &test; [download]
use strict; sub test { print $main::hash{foo} . "\n"; } [download]