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 trialZachary Goforth
748 PointsHow do I pass Challenge Task 2 of Enums and Structs?
I put in the code below and received this error...
error: use of unresolved identifier 'Slow' var turtleSpeed = Slow.rawValue ^
What do I need to change?
enum Speed: Int {
case Slow = 10
case Medium = 50
case Fast = 100
}
var turtleSpeed = Slow.rawValue
3 Answers
Steve Hunter
57,712 PointsYou need to tell it which enum Slow
is part of:
var turtleSpeed = Speed.Slow.rawValue
Hope that helps!
Steve.
Joshua Vargas
3,162 PointsWhen you're declaring your turtleSpeed variable, and you set it to Slow.rawValue, the computer doesn't know that it's of type Speed. It's basically saying, you're asking for the rawValue of Slow, but, what is Slow? Well, Slow is a Speed. So, we can write this as Speed.Slow.rawValue in order to let the computer know that you're talking about the type Speed.
As Steve replied before me,
var turtleSpeed = Speed.Slow.rawValue
I hope the explanation makes sense and helps.
Kamran Ismayilov
5,753 Pointsvar Guys I'm little bit confused, what then this means ?
var turtleSpeed = Speed(rawValue: 10)
This is what came to my mind at first when I read the instructions
Zachary Goforth
748 PointsZachary Goforth
748 Pointsit worked, thanks.
Steve Hunter
57,712 PointsSteve Hunter
57,712 PointsNo problem! Glad to help!
Steve.