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 trialKittipol Munkatitum
13,074 Pointsstuck in this challenge
Hi, I can't pass this challenge. Could you help me pass this challenge this is my code
extension Math
{
func square(value: Double) -> Double {
return square(value)
}
}
thanks
protocol Math {
func square(value: Double) -> Double
}
// Enter your code below
1 Answer
Jason Anders
Treehouse Moderator 145,860 PointsHey there,
First, I add the markdown to you post so your code is more readable in the Forum. :)
Next, you're on the right track with your answer, but you are calling the function inside of itself. What the challenge wants is the implementation, not the method call.
Below is the corrected code for your reference. I hope it makes sense once you see the solution. :)
protocol Math {
func square(value: Double) -> Double
}
// Enter your code below
extension Math{
func square(value: Double) -> Double{
return value * value //here, now the function has some "function"
}
}
Keep Coding!
Kittipol Munkatitum
13,074 PointsKittipol Munkatitum
13,074 Pointsthanks for helping Mr.Jason :)