Help for this page
sub Foo::new { bless {}, $_[0]; }
my $bar = $foo->can('bar'); $bar->($foo); # Is there any difference between this &bar $foo->$bar; # and this &bar?