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 trialKjetil Korsveien
1,713 PointsWorks in Xcode, but not in the CodeChallenge
Xcode, but not in the CodeChallenge
let name = "Kjetil." let greeting = "("Hi there") (name)"
also tried different variations with the punctionation mark.
// Enter your code below
let name = "Kjetil."
let greeting = "\("Hi there") \(name)"
1 Answer
Kyle Lambert
1,969 PointsHi Kjetil, the reason for the error is because you're trying to use string interpolation on a value that isn't declared. 'name' is declared by the constant
let name = "Kjetil"
However 'Hi there' isn't declared and is only a part of the constant 'greeting'
There is two ways to correct this.
-
Remove string interpolation from 'Hi there'
let name = "Kjetil" let greeting = "Hi there \(name)."
-
Declare 'Hi there' as a constant
let name = "Kjetil" let someGreeting = "Hi there" let greeting = "\(someGreeting) \(name)."
But for the sake of this code challenge use answer 1.
Kjetil Korsveien
1,713 PointsKjetil Korsveien
1,713 PointsTnx Kyle! I wasn't thinking simple enough :)