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) Types Printing Results

Cesar Romero
Cesar Romero
169 Points

Incorrect Assessment on Challenge using println

when i see the answer for the challenge using println i see that i did the same thing although it keeps saying im wrong, i am imputting: println = ("Learn (language)") given: let language = "Swift" I dont know what to do anymore or how i am wrong.

println.swift
let language = "Swift"
println = ("Learn \(language)")
println = ("Learn \(language)")

1 Answer

Holger Liesegang
Holger Liesegang
50,595 Points

Welcome to Treehouse, Cesar!

you might want to print the string: "Learning Swift" like so:

let language = "Swift"
println("Learning \(language)")