Help for this page

Select Code to Download


  1. or download this
    my $foo = new Foo;
    
    $foo->add_item("Cheese");
    ...
    sub add_item {
        push @{ $_[0]->{_items} }, @_[1 .. $#_];
    }
    
  2. or download this
    $foo = bless( {
                    '_orderid' => '',
                    '_items' => [
    ...
                                  'Cat'
                                ]
                  }, 'Foo' );