Passing Through @ARGV
Practice Problems
while($itm = shift @ARGV) {
print "$itm.\n";
}
while($itm = pop @ARGV) {
print "$itm.\n";
}
Identifiers
Answer
Patterns I