Help for this page

Select Code to Download


  1. or download this
    sub calculate_foo {
      my $self = shift;
      $self->foo($self->foo + 999);
      return $self->foo;
    }
    
  2. or download this
    sub calculate_foo {
      my $self = shift;
      return $self->foo($self->foo + 999);
    }