Thread Hilfe bei Perl Script (10 answers)
Opened by Jill at 2005-07-30 13:19

mhybner
 2005-07-30 15:34
#56828 #56828
User since
2005-07-30
4 Artikel
BenutzerIn
[default_avatar]
probier mal mit use strict; dann sagt perl warum der code sch... ist:

Global symbol "$TextRef" requires explicit package name at
Global symbol "$TextRef" requires explicit package name at
Execution of test001.pl aborted due to compilation errors.

immer gut zum debuggen!

use strict;
&A();
sub B() {
print $TextRef, "\n";
}
sub A() {
my $Text = "Beispieltext";
$TextRef = $Text;
&B();
}

View full thread Hilfe bei Perl Script