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 trialHaitham Alam
2,685 PointsWhy?
Can i Know why my answer is not accepted?
protocol UserType {
var name: String {get}
var age: Int {get set}
}
4 Answers
Haitham Alam
2,685 PointsThanks a lot
Jennifer Nordell
Treehouse TeacherThere needs to be a space between your opening and closing curly braces around your get and set. See my solution here:
protocol UserType {
var name: String { get }
var age: Int { get set }
}
Haitham Alam
2,685 PointsThanks for your answer, but why the compiler is not showing any error??
Jennifer Nordell
Treehouse TeacherBecause as I understand it, it works fine in the compiler, but not in the challenge. Why the challenge doesn't accept your... I can't answer. I can only say what it will accept :)
Haitham Alam
2,685 PointsThanks again, the question is: In normal coding, do I need to use space as well or is it only for the challenge sake?
Jennifer Nordell
Treehouse TeacherI've seen this in the compiler myself and it didn't require the spaces. So I think it's just the challenge :) But might be a good habit to get into? It doesn't hurt anything and it's pretty readable.