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 2.0 Basics Swift Types Recap: Swift Types

mustafa attaie
mustafa attaie
8,068 Points

Swift 2.0 Basics recap, i'm stuck on the second part of the challenge. I don't understand how to use # for stringInterpo

let firstValue = 2 let secondValue = 4 let product = 8 let output = firstValue + secondValue = product

why isn't this working? what am i doing wrong?

types.swift
// Enter your code below
let firstValue = 2
let secondValue = 4
let product = 8
let output = firstValue + secondValue = product

1 Answer

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

I've got to be honest here. I'm not sure where you're getting the # from in regards to string interpolation. Here's my end code and I'll go through it step by step.

// Enter your code below
let firstValue = 2
let secondValue = 7

let product = firstValue * secondValue
let output = "The product of \(firstValue) times \(secondValue) is \(product)."

Created firstValue and assigned it a value of 2

Created secondValue and assigned it a value of 7

Created a product and assigned it the value of the result of 2 times 7

Created an output string using string interpolation to read: "The product of 2 times 7 is 14." when run

mustafa attaie
mustafa attaie
8,068 Points

yeah i just figured it out thank you.