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 trialDias Zhumagaliyev
Courses Plus Student 111 Pointswhere is the mistake?
i dont understand
//: Playground - noun: a place where people can play
import UIKit
var str = "Hello, playground"
//Swift Recap
var someVariable = "aVariable"
let someConstant = 20
someVariable = "anotherString"
//var fruitsArray: [String] = ["apples"]
var fruitsArray = ["apples"]
fruitsArray.append("bananas")
fruitsArray
//optional
var optionalString: String? = "Hello!"
optionalString = nil
Dias Zhumagaliyev
Courses Plus Student 111 PointsSteve Hunter , yes the first challenge. I did everything what was in the video
Steve Hunter
57,712 PointsIn the challenge you've linked this to, the first question is Create a constant named bestSmartphone and assign it the string "iPhone". Is that the one you mean?
Steve Hunter
57,712 PointsSteve Hunter
57,712 PointsIs this to do with the challenge? Either way, what error are you seeing?
Steve.