1use strict; use warnings;
2
3for my $x (1 .. 2) {
4    my $y = $x + 1;
5    my $x = $x - 1;
6}
7