simple ruby program problem

H

Hunter Walker

So I have been reading Chris Pine's book, "Learn to Program". I am
working through the examples and the "a Few Things to Try" sections at
the end of each chapter. I having a problem with one of them.

Here is the chapter: http://pine.fm/LearnToProgram/?Chapter=08

Basically, he wants you to write the psych question program w/o using
the variables good_answer and answer. I tried to do this in the code
below, however, when I run it in TextMate and the gets asks me for input
before puts lists the question. In other words, the first thing that
happens after I run it is the "Script is requesting input" message box.

I will note this: every now and then, the program will work properly,
but this is usually after I run the program for the first after opening
Textmate for the first time.

Thanks for your help!!


# begin code here
def ask question

reply = ''

while (reply != 'yes' || reply != 'no')

puts question

reply = gets.chomp.downcase


if reply == 'yes'
return true

elsif reply == 'no'
return false

end

puts 'Please answer yes or no!'

end

end


puts

ask 'do you like apples?'
wets_bed = ask 'do you wet the bed?'

puts

puts wets_bed

# end of code
 
R

Rob Biedenharn

while (reply != 'yes' || reply != 'no')


Well, this is effectively and infinite loop becasue reply will always
be != to one or the other and the whole expression will be true.

Since you have a return statement in a couple places, this might not
be a problem for this program.

-Rob

Rob Biedenharn http://agileconsultingllc.com
(e-mail address removed)
 
H

Hunter Walker

Rob said:
Well, this is effectively and infinite loop becasue reply will always
be != to one or the other and the whole expression will be true.

Since you have a return statement in a couple places, this might not
be a problem for this program.

-Rob

Rob Biedenharn http://agileconsultingllc.com
(e-mail address removed)

Yeah, good point. You are right though, the return statement does stop
the loop. See attached screen shot for what happens....

Attachments:
http://www.ruby-forum.com/attachment/3196/post.jpg
 
H

Hunter Walker

Rob said:
Try running directly from an xterm (Terminal) window. I suspect that
running inside TextMate is the cause of the trouble (and that your
script wants input).

-Rob

Rob Biedenharn http://agileconsultingllc.com
(e-mail address removed)

You are correct, Rob. Works every time in xterm. Thank you for the
help.
 

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
473,770
Messages
2,569,583
Members
45,075
Latest member
MakersCBDBloodSupport

Latest Threads

Top