if (CONDITION) { ACTION }
elsif (CONDITION) { ACTION }
...
elsif (CONDITION) { ACTION }
else { ACTION }
####
$_ % 2 or $_ % 3 or $_ % 4 or $_ % 5 or say for $from .. $to;
####
$ perl -wE 'foreach my $i ( 0 .. 120 ) { if ($i % 2 != 0) { next; } elsif ($i % 3 != 0) {next; } elsif ($i % 4 != 0) {next; } elsif ($i % 5 != 0) {next; } else { say $i;} }'
0
60
120
####
$ perl -wE 'foreach my $i ( 0 .. 120 ) { if ($i % 2) { next; } elsif ($i % 3) {next; } elsif ($i % 4) {next; } elsif ($i % 5) {next; } else { say $i;} }'
0
60
120
####
$ perl -wE 'foreach my $i ( 0 .. 120 ) { next if $i % 2 or $i % 3 or $i % 4 or $i % 5; say $i; }'
0
60
120
####
$ perl -wE 'foreach my $i ( 0 .. 120 ) { say $i unless $i % 2 or $i % 3 or $i % 4 or $i % 5; }'
0
60
120
####
$ perl -wE 'for ( 0 .. 120 ) { say unless $_ % 2 or $_ % 3 or $_ % 4 or $_ % 5; }'
0
60
120
####
$ perl -wE 'for ( 0 .. 120 ) { $_ % 2 or $_ % 3 or $_ % 4 or $_ % 5 or say; }'
0
60
120
####
$ perl -wE '$_ % 2 or $_ % 3 or $_ % 4 or $_ % 5 or say for 0 .. 120'
0
60
120