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);
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Understanding a OOP Code: Package declared within a Package
by BrowserUk (Patriarch) on Oct 06, 2016 at 12:37 UTC | |
Re^3: Understanding a OOP Code: Package declared within a Package
by Phenomanan (Monk) on Oct 06, 2016 at 13:10 UTC |
In Section
Seekers of Perl Wisdom