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 trialSTEVEN PENA
13,928 PointsLet's get in some practice creating a class. Declare a class named Shape with a variable property named numberOfSides of
am close i just need a little
// Enter your code below
let someShape = Shape(numberOfSides: 10)
class Shape {
var numberOfSides: Int
init(numberOfSides: Int) {
self.numberOfSides = numberOfSides
}
}
2 Answers
Jeff McDivitt
23,970 PointsHi Steven - The only thing you are missing is the last part of the question
class Shape {
var numberOfSides: Int
init(numberOfSides: Int){
self.numberOfSides = numberOfSides
}
}
let someShape = Shape(numberOfSides: 16)
Allen Soberano
13,634 PointsSteven, you are very close. I'll try to help without giving you the full answer.
If you look at the challenge it says :
"Once you have a class definition, create an instance and assign it to a constant named someShape."
The way you coded it, the statement would look like this: "Once you have a constant named someShape, define a class definition"
If you look at the 2 statements, I think you will figure it out.