C:\>perl -E "my @arr=qw(a b c d); my $a; for $a(@arr) {say $a;}" a b c d C:\>perl -E "my @arr=qw(a b c d); my $a; foreach $a(@arr) {say $a;}" a b c d