in reply to Re: packages (Classes) and file names
in thread packages (Classes) and file names

«…objects that behave differently are not members of the same class»

Not necessarily:

use Monk; use Role::Tiny; … $karl = Monk->new; $bill = Monk->new; Role::Tiny->apply_roles_to_object($karl, qw(Nose)); Role::Tiny->apply_roles_to_object($bill, qw(Cuke)); …

It is safe to assume that we behave differently. Regards, Karl

«The Crux of the Biscuit is the Apostrophe»

Replies are listed 'Best First'.
Re^3: packages (Classes) and file names
by BillKSmith (Monsignor) on Mar 03, 2023 at 19:36 UTC
    In the original post, I recognized my own confusion with anything "Object Oriented". I am not surprised that my explanation is not quite right. I hope that I have motivated shmem to look in the right place for the explanation of his problem.
    Bill