Help for this page
package Foo; ... __PACKAGE__->mk_accessors(qw(spiro london)); 1;
my $foo = Foo->new( { spiro => 'Agnew', london => 'England' } ); isa_ok( $foo, 'Foo' ); ... ok( $foo->london('Ontario'), "set london" ); is( $foo->spiro, 'Not really Agnew', "spiro" ); is( $foo->london, 'Ontario', "london" );