Simple input problem

O

Omar Campos

Hello all,

Somehow the following always worked for me before, but tonight, it
failed, and I don't understand why:

gets a

It's a simple gets command! For some reason when I press Enter, the
cursor just stays there, waiting for more input. What can this be?
Also, I can't do gets a, if I haven't assigned a value to a yet. How is
that possible? I thought I could use ruby variables without declaring
them first! Please help, it's frustrating to get stuck on something so
basic!
 
O

Omar Campos

Omar said:
Hello all,

Somehow the following always worked for me before, but tonight, it
failed, and I don't understand why:

gets a

It's a simple gets command! For some reason when I press Enter, the
cursor just stays there, waiting for more input. What can this be?
Also, I can't do gets a, if I haven't assigned a value to a yet. How is
that possible? I thought I could use ruby variables without declaring
them first! Please help, it's frustrating to get stuck on something so
basic!

Never mind! I was doing it wrong, it is

a = gets

!!
 
B

Bertram Scharpf

Hi,

Am Freitag, 18. Dez 2009, 12:18:03 +0900 schrieb Omar Campos:
Never mind! I was doing it wrong, it is

a = gets

Be aware that `gets' will return `nil' when the user presses
Ctrl-D. Saying

gets.chomp

will raise an exception then.

Bertram
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
474,163
Messages
2,570,897
Members
47,434
Latest member
TobiasLoan

Latest Threads

Top