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 trialRicardo Gonzalez
324 PointsIts been a while since I been in print and I have seen the video quite a couple of times and still don't tend to get it.
I am stuck in the at the part where the instructor is teaching about print and now I have to take the challenge but I don't seem get it and I have seen the video a couple of times and still don't tend to get it so I would like some assistance with this part of the course. Thank You
let language = "LearningSwift"
print(" language ")
2 Answers
Chase Marchione
155,055 PointsHi there,
The challenge is looking for you to use interpolation to make "Learning Swift" print out using println. The \() syntax is used to accomplish interpolation. (Interpolation is used when printing constants, which 'language' is in this example.)
Coding Example:
let language = "Swift"
println("Learning \(language)")
Hope this helps!
Andrew Vang
170 PointsIm stuck on this challenge. I did exactly what is shown above and it still says that i need to interpolate
Ricardo Gonzalez
324 PointsRicardo Gonzalez
324 PointsThanks a lot CJ this help a lot,from what you put in the picture I understood what the challenge was asking me to do. Thanks a lot again!!!