Help for this page

Select Code to Download


  1. or download this
    $foo->bar($x)->baz($y)
    
  2. or download this
    $foo->bar($x);
    $foo->baz($y);           # same object
    
  3. or download this
    my $bar = $foo->bar($x);
              $bar->baz($y); # different object