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 trialRichard Pitts
Courses Plus Student 1,243 PointsNot Sure on this one either!
What is the correct answer?
protocol Calculator {
func square(_ value: Double) -> Double
}
extension Calculator {
func square(_ value: Double) -> Double
}
// Enter your code below
1 Answer
David Papandrew
8,386 PointsHi Richard,
Remember that the protocol just tells you what you need to include but not how. So the protocol will only include the function name and signature (params and return type).
So when you write the extension, you need to write out a fully working function (that also conforms to the protocol).
To do this, you will want to include a return statement inside the body of the function.
Here is the code:
protocol Calculator {
func square(_ value: Double) -> Double
}
// Enter your code below
extension Calculator {
func square(_ value: Double) -> Double {
return value * value
}
}