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 trialrobert bowden
381 PointsI don't understand the question about interpolation using constants.
I don't understand what its asking me to do and i cant find the info in the video.
println language = ("Learning Swift")
1 Answer
Tobias Helmrich
31,603 PointsHey Robert,
you have given the language constant already, so everything you have to do is use println to print out a string in which you interpolate the constant language. To interpolate a variable/constant inside of a string just write the variable or constant inside of \()
.
So you should write it like that:
let language = "Swift"
println("Learning \(language)")
I hope that helps and if you have further questions feel free to ask! :)
robert bowden
381 Pointsrobert bowden
381 PointsThanks very much!!