6 Einträge, 1 Seite |
1 2 3 4 5 6 7 8
foreach (...) { ... if ( $1 == 1 ) { 1. Anweisung 2. Anweisung next; } }
1 2 3 4 5 6 7
# Laengere Schreibweise: if ($x == 1) { $x = 0; } # Kuerzere Schreibweise: $x = 0 if $x == 1;
1
2
3
print "ciao!" if $string eq "ciao";
print "hi!" elsif $string eq "hi";
print "hallo!" else;
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
my %funcs = ( ciao => \&print_ciao, hi => \&print_hi, ); my $string = 'ciao'; if( exists $funcs{$string} ){ $funcs{$string}->(); } else{ print_default(); } # hier die Subs...
6 Einträge, 1 Seite |