- or download this
DB<80> package ABC::Foo; our $User='talexb'
- or download this
DB<81> use strict;print ${ $main::{"ABC::"}{"Foo::"}{User} }
talexb
- or download this
DB<82> use strict; no strict 'refs'; print ${ 'ABC::Foo::User' }
talexb
- or download this
DB<99> use strict;print ${ $ABC::{"Foo::"}{User} }
talexb