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 Basics (Retired) Ruby Methods Method Returns: Part 2

def mod (a, b) return a%b = c puts "The remainder of a divided by b is #{c}"

I cannot successfully answer this question in ruby basics . Using interpolation to return "The value of a divide by b is c" ...where 'a' and 'b' are variables, and 'c' is the result of a%b.

method.rb
def mod(a, b)
  return a%b = c
  puts "The remainder of a divided by b is #{c}"
 end

2 Answers

Tatiana Perry
Tatiana Perry
17,156 Points

Its a bit confusing. You need to use string interpolation for a, b and c or a%b.

def mod(a, b)
  "The remainder of #{a} divided by #{b} is #{a%b}."
end

Tatania, I am getting errors in your solution ...is there is a syntax error in it ?

Ignore my prevoius post......it's great and thanks for your help.