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
Anders Berendt
171 PointsOn stage 2 of learning SWIFT I cannot get the task 1 of 1 right :( (Do'h) Can anyone please help?
"Given the constant named language, write a println statement which will print the following string: "Learning Swift". (Remember to use the language constant within the string you pass to your println statement)."
How should this look like?
3 Answers
abdulah binmadi
810 PointsYou have already given a constant called language which has the value "Swift". you should make a println and give it the value "Learning(language)" so the full code should be like this :
let language = "Swift"
println("Learning (language)")
abdulah binmadi
810 Pointsyou're welcome :)
abdulah binmadi
810 Pointsyou're welcome :)
Anders Berendt
171 PointsAnders Berendt
171 PointsThank you very much Abdulah :)