Help for this page

Select Code to Download


  1. or download this
    $foo->bar(2)
        ->baz(3)
        ->qux;
    
  2. or download this
    my $bar = $foo->bar(2);
    $bar->baz(3);
    $bar->qux;