Help for this page

Select Code to Download


  1. or download this
      $thing->foo();
      $foo = $thing->foo($bar);
    
  2. or download this
      $thing->get_foo();
      $foo = $thing->set_foo($bar);
    
  3. or download this
    sub foo {
      my $self = shift;
    ...
        # return foo member here
      }
    }