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 Operators Working With Operators: Part 2

Why isn't this working?

my code isn't working, and I don't understand why. My not operator is white, so I think it could be that. All of the videos that I have watched don't explain why this isn't working, so I hope that someone can help me.

var initialScore = 8 initialScore += 1

9 = !=10

let isWinner = initialScore

operators.swift
// Enter your code below

var initialScore = 8
initialScore += 1

9 = !=10

let isWinner = initialScore

1 Answer

Jeff McDivitt
Jeff McDivitt
23,970 Points
var initialScore = 8

//You have the first part correct

initialScore += 1

//You do not need the 9 = !=10
//You started the last part correctly you just need to finish
//The winner is when the initialScore is not equal to 10

let isWinner = initialScore != 10

Thanks for the advice Jeff! I appreciate it very much.