Leser: 1
|< 1 2 >| | 18 Einträge, 2 Seiten |
1
2
3
4
5
6
7
8
9
10
11
package MyCollection::MyApp::Functions;
use strict:
use warnings;
use MyCollection::MyApp::OtherFunctions;
sub call_a_function {
&MyCollection::MyApp::OtherFunctions::call_an_other_function(@_);
}
1;
1
2
3
4
5
6
7
8
9
10
11
package MyCollection::MyApp::Functions;
use strict:
use warnings;
use MyCollection::MyApp::OtherFunctions;
sub call_a_function {
&MyCollection::MyApp::OtherFunctions::call_an_other_function(@_);
}
1;
1
2
3
4
5
6
7
8
9
10
11
package MyCollection::MyApp::Functions;
use strict:
use warnings;
use OtherFunctions;
sub call_a_function {
&MyCollection::MyApp::OtherFunctions::call_an_other_function(@_);
}
1;
1
2
3
4
..\workspace\Projekt\*
..\workspace\Projekt\Main.pl
..\workspace\Projekt\MyCollection\MyApp\Functions.pm
..\workspace\Projekt\MyCollection\MyApp\OtherFunctions.pm
|< 1 2 >| | 18 Einträge, 2 Seiten |