Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Bob Derison
3,216 PointsHow do I create a computed property for age, since this is a get set variable in the protocol?
I cannot find the right solution for this objective.
protocol User {
var name: String { get }
var age: Int { get set }
}
struct Person: User {
let name: String
var age: Int {
return
}
let somePerson = Person(name: "Frank")
1 Answer

Brandon Mahoney
iOS Development with Swift Techdegree Graduate 30,149 PointsHere you go:
protocol User {
var name: String { get }
var age: Int { get set }
}
struct Person: User {
var originalAge = 37
var name: String {
get {
return "Brandon"
}
}
var age: Int {
get {
return originalAge
}
set {
originalAge = newValue
}
}
}
let somePerson = Person(originalAge: 37)
This way below also passes.
protocol User {
var name: String { get }
var age: Int { get set }
}
struct Person: User {
var name: String
var age: Int
}
let somePerson = Person(name: "Brandon", age: 37)