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 Mixed Types

This is still not quite right and I don't know why?

I believe I have done everything right but it is still wrong?

types.swift
// Enter your code below
let title = "A Dance With Dragons"
var rating Double = 7.5

"\ (title), \ (rating)\ (double)"

3 Answers

The task does not ask for the line you have at the end, also you do not need to declare rating a double

let title = "A Dance with Dragons"
var rating = 7.5
var isAvailable = false

Hi Jeff thank you for that. Where it says Var isAvailiable = false I don't get that I think I have missed something somewhere along the line.

That is task three of the challenge I just included it it there

thanks