Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Ruby Ruby Loops Build a Simple Contact List Methods That Return a Value

Andrew Insley
Andrew Insley
7,014 Points

I can code to work in Workspaces but not in problem. Help???

Again, another problem where I don't really understand what the question is asking me to do. I have assumed it wants me to get an input, then convert this to a number if it is a number and then return the answer.

I have designed the code and it seems to work in Workspaces but something must be wrong because it is not being accepted as the solution.

ask.rb
def parse_answer(answer, kind="string")
  answer = gets.chomp
  answer = answer.to_i if kind == "number"
  return answer
end

1 Answer

Rachelle Wood
Rachelle Wood
15,362 Points

Hi. You are almost there. All you have to do is drop answer = gets.chomp since this is passed in somewhere else in the program before you define parse_answer.