9 lines
145 B
Perl
9 lines
145 B
Perl
|
#!/usr/bin/perl
|
||
|
|
||
|
|
||
|
@array = ("one", "two", "three", "four");
|
||
|
foreach (@array) {
|
||
|
print "The value of the iterator is now $_ \n";
|
||
|
}
|
||
|
|
||
|
|