Tim Hunter wrote: > Live365 Live365 wrote: >> Hi, >> >> I am new to ruby. I am trying to get input from the user and then trying >> to compare that string to perform action depending on the comparision >> result: >> Here is the code >> while command = STDIN.gets >> command.chomp >> print #{command} > > Forgot to add, if you use the p method to print the command instead of > print, you would have seen the newline character. p is good for > debugging. > > p command > > Notice that you don't have to use #{}, either. Thanks Tim it worked. p command is also very useful to see what is the exact return. -- Posted via http://www.ruby-forum.com/.