- or download this
chomp $_;
...
if ($array[0] eq "") {
shift (@array)
}
- or download this
# Split the line by whitespace
my @array = split;
- or download this
while (<@array>) {
- or download this
while (glob join $", @array) {
- or download this
foreach (@array) {