RosettaCodeData/Task/Variable-declaration-reset/Perl/variable-declaration-reset-1.pl

7 lines
144 B
Perl
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
@s = <1 2 2 3 4 4 5>;
for ($i = 0; $i < 7; $i++) {
$curr = $s[$i];
if ($i > 1 and $curr == $prev) { print "$i\n" }
$prev = $curr;
}