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 trialJustus Aberson
1,035 PointsWhat am I doing wrong?
Hello, Im doing this challange and I'm not getting the right answer, when I put the exact same code in a playground, it's correct, what do I need to do that the website corrects my answer? Thanks!
// Enter your code below
var initialScore = 8
initialScore = initialScore + 1
let totalScore = initialScore
1 Answer
Jason Anders
Treehouse Moderator 145,860 PointsHey Justus,
The challenge is wanting you to assign and increment the value all in one line. For this task, you will need to increment the amount before assigning it to the constant, as the task wants both to be the same amount.
Below is the code the challenge is looking for, however, keep in mind that the ++
operator is deprecated in Swift 3.
var initialScore = 8
let totalScore = ++initialScore
Keep Coding!