in reply to Can the fully qualified name of a global variable be determined?

Symbol::Global::Name
#!/usr/bin/perl -l use strict; use warnings; package Mi; our $foo = q{}; package S; use Symbol::Global::Name; print Symbol::Global::Name->find(\$foo);
  • Comment on Re: Can the fully qualified name of a global variable be determined?
  • Download Code