Help for this page

Select Code to Download


  1. or download this
    for my $accessor (qw{ foo bar }) {
      my $method = sub {
        my($self) = @_;
    ...
      no strict 'refs';
      *$accessor = $method;
    }
    
  2. or download this
    sub foo {
      my($self) = @_;
      return $self->{foo};
    }