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 trialJosh Hunt
8,021 PointsThis code works in my IRB, but not in the work space. Frustrating.
Why isn't the workspace respecting this syntactically correct ruby?
def mod(a, b)
c = a % b
puts "The remainder of #{a} divided by #{b} is:#{c}"
end
puts mod(10, 5)
1 Answer
andren
28,558 PointsWhile your code certainly is syntactically correct, it is not doing what the challenge requested.
The challenge specifies that you have to return a string from the function. You are printing the string with puts
which is not the same thing. Even though those actions appear to behave similarly in the REPL.
If you change puts
to return
like this:
def mod(a, b)
c = a % b
return "The remainder of #{a} divided by #{b} is:#{c}"
end
puts mod(10, 5)
Then your code will work.