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

Using these values, we want to compute the product and print out the product in a formatted string. Step 1: Declare a c

I do not who to do this. Can someone help me please?

types.swift
// Enter your code below
let firstValue = 2
let secondValue = 1
let product = 2
let finalOutput = 2 * 1

4 Answers

You have declaring the variables correct. For the next part it is asking you to multiply the firstValue * SecondValue. You then need to use string interpolation for the third part

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

but if it is a interpolation why do not i put finalOutput or something like that?

and what about quotation mark at the end of the last string.

The question asks you to name it output and what about the quotation marks? They are needed when using string interpolation

thank you. It help me a lot.