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 trial
Jason Larkin
13,970 PointsMaking a languages dictionary
The instructions were to set dictionary within a constant called languages- where did I go wrong? Can anyone help?
let languages = ["iOS":"Swift, "Android":"Java"]
2 Answers
Luke Glazebrook
13,564 PointsYou haven't closed your speech marks after Swift! The correct code is as follows:
let languages = ["iOS":"Swift", "Android":"Java"]
Jason Larkin
13,970 PointsThanks Luke, I knew it was something simple like that. Blame Daylight Savings Time!
Luke Glazebrook
13,564 PointsSimple errors are sometimes the most difficult to find because you don't look out for them as much as the more complicated ones.
Glad you managed to get your problem solved.