use Some::Package
will tell Perl to search for module Package in Some/Package.pm
but
@ISA = ("Some::Package")
will not direct Perl correctly to the tree Some/Package.pm
why???? and how to tell Perl that we WANT Some/Package.pm, not Some::Package ???
use Some::Package
@ISA = ("Some::Package")
use Some::Package;
package Some::Package;
package Package;