Thread Problem mit Variablendeklaration
(5 answers)
Opened by undef at 2010-02-18 15:29 Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 #!/usr/bin/perl -w use strict; use warnings; my @blafu = qw / hallo ich peter /; foreach my $test (@blafu) { &sub1($test); } sub sub1 { my $test = shift; print "$test\n" } 10 print "Hallo"
20 goto 10 |