- or download this
sub some_function
{
my ($first, $second) = @_;
...
...
}
- or download this
SomeClass->some_method( $first, $second );
$some_object->some_method( $first, $second );
- or download this
package SomeClass;
sub new
...
...
my $some_object = SomeClass->new();