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

error

what is wrong with:

def mod(a, b) puts a % b end mod(9, 8)

method.rb
def mod(a, b)
  puts a % b
end
mod(9, 8)

1 Answer

Hi Michael,

You don't need to add "puts" statement, just use both two variables with any operators like a + b, a - b, a % b, so on without anything else, it will return automatically. If you can try to add "return a % b", however, most prefer to use without calling return.

Let's see what it goes there. :-)