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

Chris van Halewyn
Chris van Halewyn
1,374 Points

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

There's a glitch. This generates an error about the name of the constant (should be "product") but if I change the constant name to product i get an error to say it should be "output". Please fix

types.swift
// Enter your code below
let firstValue: Int = 12
let secondValue: Int = 14
let output: String = "The product of \(firstValue) times \(secondValue) is \(firstValue*secondValue)"

2 Answers

Richard Lu
Richard Lu
20,185 Points

Hey Chris,

I tried out your solution, and I get an error stating the following:

Make sure you're assigning the results of the multiplication operation to a constant named product

This might fix your problem:

// Enter your code below
let firstValue: Int = 12
let secondValue: Int = 14

let product: Int = firstValue*secondValue // Assigning the value to a constant named product
let output: String = "The product of \(firstValue) times \(secondValue) is \(product)" // Using it in string interpolation

Let me know if there are any additional questions.

- Rich

Chris van Halewyn
Chris van Halewyn
1,374 Points

Hi & Thanks,

I misunderstood the question. Thanks for making it clear.

-Chris