Help for this page

Select Code to Download


  1. or download this
    package Foo;
    
    ...
    b --> b: 0.0455599141746177
    Use of uninitialized value in print at /home/kyle/perlmonks.pl line 58
    +.
    c -->
    
  2. or download this
        sub FETCH {
            my ($self, $key) = @_;
            my $getter = "get_$key";
            return $self->$getter();
        }