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

How to add a interpolated string? I have a question on interpolated string. I would like support for It. Thank you.

I am new to programming, and I am stuck on this challenge. I am currently doing Swift 3 Basics. It says to type an Interpolated String. Heres what I typed. let name = "Groshvin" let greeting = "Hi there," let nameGreeting = "(greeting) (name)" The line below was my result- "Hi there, Groshvin."
I hope you can assist me. Kind Regards, Groshvin Grover

strings.swift
// Enter your code below
let name = "Groshvin"
let greeting = "Hi there,"
let interpolatedString = "\(greeting) \(name)"

1 Answer

Jeff McDivitt
Jeff McDivitt
23,970 Points

The task never asks for a constant interpolatedString

let name = "Jeff"
let greeting = "Hi there, \(name)"

Thank you so much, Jeff McDivitt. It helped.