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 trialDisha Mohta
2,248 Pointshow do you solve this?
I don't know what the error is with this code
struct Person {
let firstName: String
let lastName: String
func fullName() -> String {
let fullName = "\(firstName) \(lastName)"
return fullName
}
let aPerson = Person(firstName: "Tim", lastName: "Cook")
let fullName = aPerson.fullName()
}
1 Answer
William Li
Courses Plus Student 26,868 PointsYou're very closed, but 2 small issues here.
- You should write the part 2 code outside of the struct definition, as they aren't part of the struct.
- the challenge requires you to name the constant myFullName, not fullName.
struct Person {
let firstName: String
let lastName: String
func fullName() -> String {
let fullName = "\(firstName) \(lastName)"
return fullName
}
}
let aPerson = Person(firstName: "Tim", lastName: "Cook")
let myFullName = aPerson.fullName() // changed constant's name from fullName => myFullName
Hope it helps.