in reply to Re: Understanding a OOP Code: Package declared within a Package
in thread Understanding a OOP Code: Package declared within a Package
Hi
No Not like that, What I have is like this,
Package A::B::C;
1;
Package A::B::D;
sub abc {..... ... }
sub xyz { ......... }
Package A::B::E
sub new{ ..... }
Package A::B::F
use base (A::B::E);
Packge A::B::G
use base (A::B::E);
In Section
Seekers of Perl Wisdom