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 1

Mahmoud Khairallah
Mahmoud Khairallah
788 Points

Ruby Basics --> Method Returns: Part 1 --> Task #2

The challenge task asks me to :

(Inside the "mod" method, write the necessary code to return the remainder of "a" when divided by "b." Hint: remember the "%" operator! ).

My failed attempt:

def mod(a, b) return #{a} % #{b} end

method.rb
def mod(a, b)
  return #{a} % #{b}
end

You don't need to interpolate the variables.

def mod(a,b)
  return a % b
end
def mod(a, b)
  return a % b
end

There's no need for the #{} like what Pete Cass said

1 Answer

def mod(a, b)
  return a % b
end