use strict; use warnings; my $i = "Nothing to see here, move along\n"; for $i (1 .. 3) { print "$i "; } print $i; #### 1 2 3 Nothing to see here, move along