Help for this page
package Foo; sub new { # A noop constructor ... # List of @args is always the same return join(', ', @args). "\n"; }
my $f = Foo->new(); print $f->frobnicate('my','args'); ... print Foo::frobnicate('my','args'); # or even print Foo->frobnicate('my','args');