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 trialNathan Mahler
2,237 PointsMethods
Methods: During a coding challenge where it is telling me to create a method(s). It moves me to the next one but says the previous challenge is incorrect. Any idea why this would happen or what I can do more/better?
def subtract (y, z)
puts y - z
end
subtract(5, 4)
def multiply (l, m)
puts l * m
end
multiply(5 * 4)
1 Answer
Alexander Davison
65,469 PointsOK, there's two ways of fixing your program in my perspective, and you can do either:
- Remove the function calls (the challenge excepts you to do so, but it also does this itself)
OR...
- If you want to keep the function calls, you can replace the asterisk (the * character is an asterisk) with a comma. Remember: You need to pass in two arguments and not one! (The
5 * 4
evaluates to one value,20
.)
I hope this helps
Keep coding!
~Alex