Wie kann ich in Perl in einer Schleife ein Element überspringen so wie mit dem Befehl continue?
my $count = 0; while ($count < 10) { print "$count\n"; $count++; }
Mit dem next Statement.
if($count == 5) { next; }