Thread Allgm. Frage zum Stil (23 answers)
Opened by bianca at 2010-04-20 16:20

bianca
 2010-04-21 10:15
#136317 #136317
User since
2009-09-13
7016 Artikel
BenutzerIn

user image
Hmmm, habs mal für meine Zwecke angepaßt:

Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/perl -w
use strict;
use warnings;
my $fehler = '';
my $test = 'Test';
do {
        if ($test ne lc $test) {$fehler = 'Grossbuchstaben unzulaessig!'}; last if $fehler ne '';
        if ($test eq '') {$fehler = 'Ist leer'}; last if $fehler ne '';
        print "Wird verarbeitet";
} while(0);
if ($fehler ne '') {
        print "Fehler aufgetreten!";
}


Quote
Can't "last" outside a loop block at test.pl line 7.


???
10 print "Hallo"
20 goto 10

View full thread Allgm. Frage zum Stil