Help for this page

Select Code to Download


  1. or download this
    my $playername;
    
    ...
        print "What is your player's name?: ";
        chomp($playername = <STDIN>);
    }
    
  2. or download this
    while (<LOGFILE>) {
        $clipsobt++ if /\bclip\b/i;
    }