Help for this page

Select Code to Download


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