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 trialChris Beal
iOS Development Techdegree Student 793 Pointswriting a string literal
My String literal should be saying what is asked. Am I Missing something on this exercise?
// Enter your code below let firstValue = 2 let secondValue = 4 let product = firstValue * secondValue let output = "The product of (product) is 8".
// Enter your code below
let firstValue = 2
let secondValue = 4
let product = firstValue * secondValue
let output = "The product of \(product) is 8".
3 Answers
Logan R
22,989 PointsHi!
Your string should be formatted like this: "The product of 2 times 4 is 8"
, where 2, 4, and 8 should be replaced by their respective variables using string interpolation.
Chris Beal
iOS Development Techdegree Student 793 PointsHey Logan I think I am getting closer, but for some reason I am off.
// Enter your code below let firstValue = 2 let secondValue = 4 let product = firstValue * secondValue let output = "The product of (firstValue) * (secondValue) is (product)"
Logan R
22,989 PointsYou're 99% of the way there! Don't forget that you need to add \
before each variable in the string. (Also, it's times
instead of *
).
let output = "The product of \(firstValue) times \(secondValue) is \(product)"
Chris Beal
iOS Development Techdegree Student 793 Pointsahh I got it now. I had * instead of writing out times. Thanks Logan!
Logan R
22,989 PointsNo problem!