Help for this page
$foo->bar($x)->baz($y)
$foo->bar($x); $foo->baz($y); # same object
my $bar = $foo->bar($x); $bar->baz($y); # different object