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

Hi Treehouse, I'm having a little trouble with this task.

Xcode turns out isWinner as true but the NOT operator doesn't work in the online editor for some reason, at least the way i tried. Where is my mistake? Thanks for helping out.

operators.swift
var initialScore = 8

initialScore += 1

let isWinner = initialScore

isWinner != 10

2 Answers

Hey Daniel!

// Task 1 var initialScore = 8 initialScore += 1

//Task 2 let isWinner = initialScore != 10

Try putting you last two code lines into one line. It makes it more readable and simpler. So you are giving the constant the name isWinner and then with the assignment operator: Telling the compiler that if initialScore is not 10 the player(initialScore) has won. Your code works but it can be written in a better way.

Happy coding!

Hi Fiodar,

Thanks for the answer!

Best

No problem, good luck!