Re: gets() question
- Posted by Darth Maul <Prog_Matt at YAHOO.COM> Apr 07, 2000
- 453 views
You're adding to your movies sequence like a string. This would work better: movieNames &= {tempMovies} or moveNames = append(movieNames,tempMovies) Don't worry - you're in good company. I do that from time to time