in reply to Attempting to fill a hash
You want to change:
while (<$wordhandle>) {
To:
while (my $deadstring = <$wordhandle>) {
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Attempting to fill a hash
by TwistedTransistor (Novice) on Jun 06, 2008 at 00:31 UTC | |
|
Re^2: Attempting to fill a hash
by chromatic (Archbishop) on Jun 06, 2008 at 06:42 UTC |