[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Gets and chomp method question

paul.denlinger@gmail.com

3/27/2006 10:31:00 PM

I'm working through the "Gets and chomp method" section of Learn to
Program on http://pine.fm/LearnToProgram/?...

I have a problem. I have entered the strings:
puts 'Hello there, and what\'s your name?'
name = gets
puts 'Your name is ' + name + '? What a lovely name!'
puts 'Pleased to meet you, ' + name + '. :)'
into the text editor, and when I run it, it of course runs up to the
second line. At this stage, I'm supposed to get a question, "What's
your name?" and respond by typing in my name.

When I run it, the command box opens, and just stays there. I have
tried typing my name in there, but nothing happens, and I cannot get
the code to continue running.

Where am I supposed to type in my name, and what am I supposed to type
to get the code running through the remaining lines of code?

Thank you.

6 Answers

Justin Collins

3/27/2006 11:06:00 PM

0

paul.denlinger@gmail.com wrote:
> I'm working through the "Gets and chomp method" section of Learn to
> Program on http://pine.fm/LearnToProgram/?...
>
> I have a problem. I have entered the strings:
> puts 'Hello there, and what\'s your name?'
> name = gets
> puts 'Your name is ' + name + '? What a lovely name!'
> puts 'Pleased to meet you, ' + name + '. :)'
> into the text editor, and when I run it, it of course runs up to the
> second line. At this stage, I'm supposed to get a question, "What's
> your name?" and respond by typing in my name.
>
> When I run it, the command box opens, and just stays there. I have
> tried typing my name in there, but nothing happens, and I cannot get
> the code to continue running.
>
> Where am I supposed to type in my name, and what am I supposed to type
> to get the code running through the remaining lines of code?
>
> Thank you.
>

Where are you running the program from? Inside some IDE? From the
command line? In Windows?

-Justin


Justin Collins

3/27/2006 11:08:00 PM

0

Justin Collins wrote:
> paul.denlinger@gmail.com wrote:
>> I'm working through the "Gets and chomp method" section of Learn to
>> Program on http://pine.fm/LearnToProgram/?...
>>
>> I have a problem. I have entered the strings:
>> puts 'Hello there, and what\'s your name?'
>> name = gets
>> puts 'Your name is ' + name + '? What a lovely name!'
>> puts 'Pleased to meet you, ' + name + '. :)'
>> into the text editor, and when I run it, it of course runs up to the
>> second line. At this stage, I'm supposed to get a question, "What's
>> your name?" and respond by typing in my name.
>>
>> When I run it, the command box opens, and just stays there. I have
>> tried typing my name in there, but nothing happens, and I cannot get
>> the code to continue running.
>>
>> Where am I supposed to type in my name, and what am I supposed to type
>> to get the code running through the remaining lines of code?
>>
>> Thank you.
>>
>
> Where are you running the program from? Inside some IDE? From the
> command line? In Windows?
>
> -Justin

Nevermind, I see you are running Scintilla and I don't know anything
about that! :)

-Justin


William James

3/27/2006 11:16:00 PM

0

paul.denlinger@gmail.com wrote:
> I'm working through the "Gets and chomp method" section of Learn to
> Program on http://pine.fm/LearnToProgram/?...
>
> I have a problem. I have entered the strings:
> puts 'Hello there, and what\'s your name?'
> name = gets
> puts 'Your name is ' + name + '? What a lovely name!'
> puts 'Pleased to meet you, ' + name + '. :)'
> into the text editor, and when I run it, it of course runs up to the
> second line. At this stage, I'm supposed to get a question, "What's
> your name?" and respond by typing in my name.
>
> When I run it, the command box opens,

You ought to be running it from the command-line interpreter.
The IDE is not part of Ruby.

> and just stays there. I have
> tried typing my name in there, but nothing happens, and I cannot get
> the code to continue running.
>
> Where am I supposed to type in my name, and what am I supposed to type
> to get the code running through the remaining lines of code?
>
> Thank you.

Above the code that you typed, this appears:

What actually happens is that gets just sits there,
reading what you type until you press Enter.

Guillaume Benny

3/28/2006 12:43:00 AM

0


>
> Justin Collins wrote:
> > paul.denlinger@gmail.com wrote:
> >> I'm working through the "Gets and chomp method" section of Learn to
> >> Program on http://pine.fm/LearnToProgram/?...
> >>
> >> I have a problem. I have entered the strings:
> >> puts 'Hello there, and what\'s your name?'
> >> name = gets
> >> puts 'Your name is ' + name + '? What a lovely name!'
> >> puts 'Pleased to meet you, ' + name + '. :)'
> >> into the text editor, and when I run it, it of course runs up to the
> >> second line. At this stage, I'm supposed to get a question, "What's
> >> your name?" and respond by typing in my name.
> >>
> >> When I run it, the command box opens, and just stays there. I have
> >> tried typing my name in there, but nothing happens, and I cannot get
> >> the code to continue running.
> >>
> >> Where am I supposed to type in my name, and what am I supposed to type
> >> to get the code running through the remaining lines of code?
> >>
> >> Thank you.
> >>
> >
> > Where are you running the program from? Inside some IDE? From the
> > command line? In Windows?
> >
> > -Justin
>
> Nevermind, I see you are running Scintilla and I don't know anything
> about that! :)
>

Hi,

I've never used Scintilla myself but I tried to run your program.

It seems Scintilla has a small splitter on the right. If you drag it to the
left, this is the place where your program will write with puts... And it's
also there that you type your input (for gets). You have to ignore the
command prompt window that will start... (The splitter can also be at the
bottom depending on the options...)

You won't see anything before you type if you leave your program that way.
This is because Ruby will wait for more text before printing it because it's
more efficient this way. So you can do this to force Ruby to write the text
before you wait for the user input:

puts 'Hello there, and what\'s your name?'
STDOUT.flush
name = gets
puts 'Your name is ' + name + '? What a lovely name!'
puts 'Pleased to meet you, ' + name + '. :)'

You normally don't need that outside Scintilla...

Hope this helps. Good luck!

Guillaume




paul.denlinger@gmail.com

3/28/2006 3:29:00 PM

0

I'm running it from the SciTE editor which comes bundled with Ruby.

Guillaume Benny

3/28/2006 11:50:00 PM

0


> paul.denlinger@... wrote:
>
> I'm running it from the SciTE editor which comes bundled with Ruby.

Hi,

SciTE is (kinda) Scintilla, so my answer still applies... Just replace
Scintilla with SciTE in my reply :) ... You can see my reply there if you
didn't see it:

http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-t...

Guillaume