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 trialMario Kratafila
1,178 PointsThis practice example gives me an error though I solved the problem well.
Please fix it...
struct Person {
let firstName: String
let lastName: String
func getFullName() -> (String) {
return firstName+" "+lastName
}
}
let aPerson = Person(firstName: "Mario", lastName: "Kratafila")
aPerson.getFullName()
let fullName = aPerson.getFullName()
4 Answers
Steven Deutsch
21,046 PointsHey Mario,
Try this code: I reformatted it and kept only what is essential for the solution to pass.
struct Person {
let firstName: String
let lastName: String
func getFullName() -> String {
return "\(firstName) \(lastName)"
}
}
let aPerson = Person(firstName: "Mario", lastName: "Kratafila")
let fullName = aPerson.getFullName()
Steven Deutsch
21,046 PointsHey Mario Kratafila,
Your code passes fine for me. Try restarting your web browser.
Good Luck!
Mario Kratafila
1,178 PointsHi Steven,
Still gives me the error: The value being assigned to fullName must be the result of calling the instance method getFullName()
I restarted the Safari browser.
Mario Kratafila
1,178 PointsThank you.