6 Einträge, 1 Seite |
QuoteDirectory '\auto\MeinProgrammModul', does not exist at C:/Perl/site/lib/File/UserConfig.pm line 166
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package UserConfigTest;
use strict;
use warnings;
use File::UserConfig;
sub new {
my $class = shift;#Klasse wird übernommen
my $self = {};#Anonymes Hash wird erzeugt
bless $self, $class;#$self wird geblesst
return $self;#$self wird zurückgegeben
}
sub printes {
# The most simple Do What I Mean usage.
my $configdir = File::UserConfig->configdir;
print $configdir;
}
1;
1
2
3
4
5
6
7
8
#!/Perl/bin/perl
use strict;
use warnings;
use UserConfigTest;
my $app = new UserConfigTest;
$app->printes();
1
2
3
4
5
6
sub new {
my $class = shift;#Klasse wird übernommen
my $self = {};#Anonymes Hash wird erzeugt
bless $self, $class;#$self wird geblesst
return $self;#$self wird zurückgegeben
}
1
2
3
4
5
6
sub new {
my $class = shift;#Klasse wird übernommen
my $self = {};#Anonymes Hash wird erzeugt
bless $self, $class;#$self wird geblesst
return $self;#$self wird zurückgegeben
}
6 Einträge, 1 Seite |