Help for this page

Select Code to Download


  1. or download this
    my $i = 0;
    
    ...
        print ", $_";
      }
    }
    
  2. or download this
    print join ', ', @ARGV;
    
  3. or download this
    my $new_act;
    my $new_scene;
    ...
                $new_scene = $line;
            }
        }
    
  4. or download this
    open my $playIn, '<', $mit_shakes or die "Could not open '$mit_shakes'
    +: $!\n";