in reply to Re^3: RFC: The Poor Man's Accessor Filter
in thread RFC: The Poor Man's Accessor Filter
Yeah... yeah, I think I like that a lot.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 ...
|
|---|