Help for this page

Select Code to Download


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