From: John Joyce Date: 2007-03-10T00:36:23+09:00 Subject: Re: Arrays - Storing User Input Oh! Well, friend, you need more program. You need a loop and a prompt or some exit mechanism. The most basic of a program like this is loop that waits to be told to quit, or told to do other things. So you want to put that stuff inside a loop that waits for a condition to exit and (perhaps another condition to) give output. here is some pseudo code, you'll do the not-so-heavy lifting... while condition is prompt for input while another condition is get input continue or end get input command for output prompt for more? continue or end end Pretty much you will see this in any language. Definitely can be done more gracefully. Definitely can have more features. Questions start to arise... On Mar 10, 2007, at 12:05 AM, woodyee wrote: > (blushing) Yes; I want to press Enter. > > I want to be able to press Enter without having typed anything in > order to get back what I typed. The way it is now, I'm only able to > enter info on 1 line. I want to be able to type, hit enter, type > something and hit enter, etc, hit enter without typing and then I'll > see all of those lines that I typed. > >