Subject: | sub DB::DB { 1 } |
If you add this line somewhere to Devel::Loaded:
sub DB::DB { 1 }
... then it allows Devel::Loaded to be invoked via the Perl debugger, enabling a slightly shorter syntax:
perl -d:Loaded scriptname.pl
(Instead of "perl -MDevel::Loaded scriptname.pl".)
This is not necessary, but is nice. :-)