Leser: 12
9 Einträge, 1 Seite |
1 2 3
my $my_modul = 'test'; require "$my_modul.pm"; my $erg = test_sub ($parameter); # test_sub steht in 'test.pm'
1
2
3
4
$ perl -wle 'sub foo { }; print __PACKAGE__->can("foo")'
CODE(0x8812678)
$ perl -wle ' print __PACKAGE__->can("foo")'
Use of uninitialized value in print at -e line 1.
1 2 3 4 5 6
if(exists &test_sub) { test_sub(); }else{ warn "test_sub gibt es nicht"; }
9 Einträge, 1 Seite |