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 trialAllison Larson
3,177 PointsLet's get in some practice creating a basic enum. Declare an enum named Direction with the member
Challenge Task 1 of 1
Let's get in some practice creating a basic enum. Declare an enum named Direction with the members Left, Right, Up, Down.
1 Answer
Reed Carson
8,306 Pointsto declare an enum you start with the keyword "enum" followed by what you want to name it. you follow that with an opening bracket, then on the each lines below you list the members with the keyword "case" followed by what you want to name them. then you finish it with the closing bracket
enum Direction {
case Left
case Right
case Up
case Down
}