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 An Introduction to Swift Programming Working With Constants

Can 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

The 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"

XD that I didn't think of fatigue and unnecessarily created the whole topic. Sorry for that :P