in reply to RE: Fortune Telling Machine
in thread Fortune Telling Machine

Oops; the code didn't come through right...here it goes again. @recipients = <READ>; chop(@recipients);

Replies are listed 'Best First'.
RE: Fortune Telling Machine
by davorg (Chancellor) on Jun 16, 2000 at 18:14 UTC
    You probably want to be using chomp instead of chop. And there's no reason to split it into two statements...
    chomp($recipients = <READ>);