in reply to A module to merge packages

Ya know, instead of:
use Class::Merge qw(b a) => 'c';
I'd just as soon write:
@C::ISA = qw(b a);
as it is shorter and clearer, and doesn't require me to install a separate module. And it's "use strict" savvy. {grin}

-- Randal L. Schwartz, Perl hacker