Help for this page

Select Code to Download


  1. or download this
    package MyModule;
    
    ...
    }
    
    1;
    
  2. or download this
    use MyModule;
    
    ...
    my $result = process_something_here();
    
    MyModule::something($result);
    
  3. or download this
    use MyModule;
    
    ...
    my $result = process_other_thing_here();
    
    MyModule::something($result);