Help for this page

Select Code to Download


  1. or download this
    package Foo;
    
    ...
    __PACKAGE__->mk_accessors(qw(spiro london));
    
    1;
    
  2. or download this
    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" );