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 trialAry de Oliveira
28,298 PointsSwift
Challenge Task 1 of 1
In this task, we're going to create our first struct. Declare a struct named User.
Give it two constant stored properties - name of type String and age of type Int.
My code no work....
// Enter your code below
struct User {
let name String
let age Int
}
4 Answers
Roman Lopez
2,211 PointsHi Ary! I believe you need to add " : " between the constant name and the type. For example something like this...
let name : String
I hope it helps.
-Roman
Ary de Oliveira
28,298 Points// Enter your code below
Enter your code below struct User { let name: String let age: Int }
David Mohler
1,814 PointsThis should work.
struct User {
let name: String
let age: Int
}
Ary de Oliveira
28,298 Points// Enter your code below struct User { let name: String let age: Int }