MC logo

Passing Through @ARGV

  Practice Problems

  1. while($itm = shift @ARGV) {
        print "$itm.\n";
  2. while($itm = pop @ARGV) {
        print "$itm.\n";

<<Identifiers Answer Patterns I>>