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 trialBrian Hale
525 Pointscode problem!
I have tried several thousand variables. Please help with this code plus...
I AM GOING TO CANCEL my free trial if I don't get an answer to how i can go BACK TO THE VIDEO so I don't have to bang my head against a wall!
let language = "Swift"
print("Learning " + language)
1 Answer
Jennifer Nordell
Treehouse TeacherFirst off if you look at the tracks button on the left side of Treehouse you can pick the track you were working on and it leads you to this link https://teamtreehouse.com/library/swift-basics. If you scroll down a bit you can see all sections (videos/challenges/quizes) listed and you can click any one of them to review them.
Secondly, the challenge asks you to use string interpolation. You used concatenation, which outside of the challenge should work, but in this instance will cause it to be incorrect inside the challenge. Here's my code:
let language = "Swift"
println("Learning \(language)");
Brian Hale
525 PointsBrian Hale
525 PointsThank you so much.....
Jennifer Nordell
Treehouse TeacherJennifer Nordell
Treehouse TeacherYou're quite welcome! :)