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