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

completely lost?

can I please get some help?

operators.swift
// Enter your code below

var initialScore = 8
initialScore += 1
let isWinner = 10 = lose
let isWinner = < or > 10 = win

2 Answers

Jeff McDivitt
Jeff McDivitt
23,970 Points

I answered this for you in another thread

Mitchell Richmond
Mitchell Richmond
5,401 Points

James, for the second part of the challenge there are two steps:

1st Step: You just have to set a constant named isWinner, so:

let isWinner

2nd Step: Then you set it to a comparison finding out if the total is 10 or not. So:

let isWinner = initialScore != 10

So that means if the initialScore does not equal 10, isWinner (which is a boolean variable) is set to true. If the initialScore does equal 10, isWinner is set to false.