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

iOS Swift Basics (retired) Types Printing Results

Brian Hale
Brian Hale
525 Points

code 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!

println.swift
let language = "Swift"
print("Learning " + language)

1 Answer

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

First 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)");