########## test_module.pm ########## package test_module; use strict; sub testsub { my $in_arg= shift; my $new_arg=$in_arg+10; return($new_arg); } 1;