document updated 18 years ago, on Mar 30, 2007
- For some reason, Data::Dumper won't dump the contents of a symbol table.  dispSymbols() will, however.  Devel::Symdump is a CPAN module that will also.
 - Class::Inspector can check whether a specific sub/etc exists
 - Three ways to refer to the subroutine Fark::fark() are:
    
    - $Fark::{fark} (directly via the symbol table for the package)
    
 - $::{"Fark::"}{fark} (specifying the package via a string)
    
 - $::{"Fark::"}{fark}{CODE}