Thread Package ruft Funktion aus anderem Package auf? (17 answers)
Opened by BratHering at 2005-11-27 16:12

esskar
 2005-11-27 17:21
#60433 #60433
User since
2003-08-04
7321 Artikel
ModeratorIn

user image
klar
Code: (dl )
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;

View full thread Package ruft Funktion aus anderem Package auf?