You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
320 B
Perl

5 years ago
#!/usr/bin/perl
$str="hello";
@numbers = (1, 3, 5, 7, 9);
print "\$str is initially $str.\n";
print "\@numbers is initially @numbers.\n";
foreach $str (@numbers ){
$str+=5;
print "$str\n";
}
print "Out of the loop--\$str is $str.\n";
print "Out of the loop--The array \@numbers is now @numbers.\n";