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 2.0 Basics An Introduction to Swift Programming Working With Variables

make langauge a variable how

how do i mke language a variable

variables.swift
// Enter your code be
//var
//var str

1 Answer

Here's an example (this actually won't work if you try to put the code into the challenge) of how you'll make a variable and assign it. In this case we are making a variable called "dessert" and assigning it to "pumpkin pie".

var dessert = "pumpkin pie"

With that little hint I hope you can get an idea how you'll solve the challenge (just change the variable name from "dessert" to "language" and the string value which you'll learn very soon from "pumpkin pie" to "Swift" with a uppercase "S").

Good luck! ~Alex