in reply to Re^3: RFC: The Poor Man's Accessor Filter
in thread RFC: The Poor Man's Accessor Filter

Ummm, I like that quite a bit. So my new code would look like this:
package Games::Traveller::Sophont; { use Class::BuildMethods qw/ name longname homeworld star orbit status niche ... etc ... /; sub new { bless {}, shift } ... etc ... } 1; package My::Purple::Blovinator; my $foo = new Games::Traveller::Sophont; $foo->name( "Chamaxi" ); ... etc ...
Yeah... yeah, I think I like that a lot.