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

iOS Intermediate Swift 2 Extensions and Protocols Protocol Extensions

Kittipol Munkatitum
Kittipol Munkatitum
13,074 Points

stuck 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

protocols.swift
protocol Math {
  func square(value: Double) -> Double
}

// Enter your code below

1 Answer

Jason Anders
MOD
Jason Anders
Treehouse Moderator 145,858 Points

Hey 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! :dizzy: