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 Swift Types String Manipulation

matthew Rowe
matthew Rowe
487 Points

how do you apply a value to a constant? for an interpolated string

my error says i need to apply a value to a constant - not sure how.

strings.swift
// Enter your code below
let name = "Sno"
let greeting = "Hi,there"

let interpolated +"\(Sno) \(greeting)"

1 Answer

Dan Weru
Dan Weru
47,649 Points

Hi matthew Rowe,

You were very close. To interpolate the strings and assign them to a constant, you need to use the constants' names i.e name and greeting. Here is an example, look at it and tweak your code accordingly

let name = "Rowe"
let greeting = ", Hola!"

let interpolated  = "\(name) \(greeting)"