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 trialSafwat Shenouda
12,362 PointsThis excercise doesnt work properly , when I enter the correct answer I keep getting an error message
I answered with
protocol UserType { var name : String {get } var age : Int { get set }
}
I still get error Make sure UserType specifies a gettable property name of type String
1 Answer
Jari Koopman
Python Web Development Techdegree Graduate 29,349 PointsHi Safwat,
The problem is simple you have to leave a space between the : and the word String / Int and don't leave a space between the variable name and the : like this:
protocol UserType {
var name: String {get }
var age: Int { get set }
}
Hope this helped!
Regards, Jari
Safwat Shenouda
12,362 PointsSafwat Shenouda
12,362 PointsThank you, it works