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

Challenge not recognizing desired result?

I have completed the challenge as requested, and even tried modifying the println command to print "Learning " as a string and then interpolate the string of constant language, but alas, I continue to see the red X.

Just want to make sure my fundamentals aren't wrong!

BTW, this works just fine in my playground...

Cheers

println.swift
let language = "Learning Swift"

println(language)

1 Answer

Caleb Kleveter
MOD
Caleb Kleveter
Treehouse Moderator 37,862 Points

You need to print "learning Swift", so you interpolate language in the string:

println("Learning \(language)")

Thanks Caleb! I'll have to review the definitions to brush up on my terminology.