+ 1
Where's the error
x = "" while x != "STOP" do puts "Hi, How are you feeling?" ans = gets.chomp puts "Want me to ask you again?" x = gets.chomp end
2 Réponses
+ 2
x = ""
while x != "STOP" do
puts "Hi, How are you feeling?"
puts "Want me to ask you again?"
x = gets.chomp
end