
Steve Cheery
58 PointsCan you help me?
The problem is I wrote this code: let constant = "favouriteDessert" and Bummer appears and it says: Your code could not be compiled. Please click on "Preview" to view the compiler errors, but in section "Preview" there is nothing written. Thank you in advance :)
2 Answers

kjvswift93
13,515 PointsThe keyword for declaring a constant type value in Swift is "let". favoriteDessert is the name you assign to the constant, not the value it is set to.
let favoriteDessert = "Cake"

Steve Cheery
58 PointsXD that I didn't think of fatigue and unnecessarily created the whole topic. Sorry for that :P