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 trialAmit Bareli
653 Pointshelp with this code challenge?
cant seem to get the correct answer if someone can help that would be great!
struct Person {
let firstName: String
let lastName: String
}
let fullName = Person(firstName : "Amit", lastName: "Bareli)
return fullName
1 Answer
Marie Franklin
13,355 Pointsyour code syntax is a little bit off. you are not defining a method inside struct...
in "Challenge Task 1 of 2" you don not have to create object of person struct.
Just declare a method named fullName() that returns a string containing the personβs full name..
struct Person {
let firstName: String
let lastName: String
func fullName()-> String {
return "\(firstName) \(lastName)";
}
}
Note: i used string Interpolation inside fullName(),