Help for this page

Select Code to Download


  1. or download this
    $test->foo("bob");
    print "Bob:".$test->foo();
    $test->foo(undef);
    print "Undef:".$test->foo();
    
  2. or download this
    sub foo {
      my ($this, $arg) = @_;
      $this->{foo} = $arg if @_>1;
      return $this->{foo};
    }