- or download this
use strict;
use warnings;
A::func();
- or download this
use Exporter;
@EXPORT = qw ($guimodule);
...
}
1;
- or download this
sub new
{ ....
...
}
1;
- or download this
my $s = Server->new();
$s->initServer();
- or download this
use A;
sub new
...
}
1;