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 trialMarcelo A Carrillo
Courses Plus Student 1,262 PointsIt looks like Task 1 is no longer passing.
when I click check work the system is asking me to go to task one. Task one is passing but it says "It looks like Task 1 is no longer passing." I don't understand since task one is passing and I am in task two. I add my methods and arguments I multiply them as the task requested and I got stuck in this loop error.
It looks like Task 1 is no longer passing.
TASK # 01 (this task is passing) def subtract (a, b) puts "the result is #{a - b}" end
subtract (2, 3)
TASK # 02 (check this in the terminal works fine) def multiply (a, b) puts "the result is #{a * b}" end
multiply(2, 2)
def multiply(a, b)
puts "the result is #{a * b}"
end
multiply(2, 3)
1 Answer
Tri Pham
18,671 PointsI think you weren't suppose to delete your subtract method just add a multiply method.
Marcelo A Carrillo
Courses Plus Student 1,262 PointsMarcelo A Carrillo
Courses Plus Student 1,262 PointsThank you so much that was it I had to add the subtract method first the continue with multiply method. Thank you!