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

I cannot figure this problem out please help me!!!

I got the first part but I cannot for the life of me figure out the second part

types.swift
// Enter your code below
let firstValue = 4
let secondValue = 2
let product = firstValue * secondValue
let output: (4) * (2) = (8) 

2 Answers

Steven Parker
Steven Parker
229,670 Points

The code looks good until the last line, it has a few issues:

  • the assignment operator is "=" (instead of ":")
  • the entire string should be enclosed in quotes
  • there should not be any numbers used, just variable names
  • the interpolation tokens inside the string are like this :point_right: \(variable_name)

You might want to revisit the Strings video where interpolation is introduced.

Thank you!

Steven Parker
Steven Parker
229,670 Points

John Garratt — Glad to help. You can mark a question solved by choosing a "best answer".
And happy coding!