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 (retired) Variables and Constants Constants

I've tried the challenge on constants at least 50 times and for some reason I just cant figure out what i'm doing wrong.

I've tried the challenge on constants at least 50 times and for some reason I just cant figure out what i'm doing wrong. Any little things to look out for that i'm probably missing?

constants.swift
let modernProgrammingLanguage = "Swift"

2 Answers

Walter Somerville
Walter Somerville
20,698 Points

It looks like it might be failing because your variable is named "modernProgrammingLanguage" and not "language"

I agree, the question is asking for a constant named language to have a value of "Swift".

So,

let language = "Swift"

That should work for you.

Steve.