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

Curtis P
Curtis P
858 Points

[SOLVED] Bummer! You printed "Leanring Swift", but you were supposed to print "Learning Swift".

Someone help me get past this level. i get this error Bummer! You printed "Leanring Swift", but you were supposed to print "Learning Swift".

My answer that i used was : prtintln('Learning (language)")

println.swift
let language = "Swift"
println("Leanring \(language)")
Curtis P
Curtis P
858 Points

i see it..lol spelling error

:smile: :wink:

Greg Kaleka
Greg Kaleka
39,021 Points

Hey Curtis,

You should really be taking the Swift Basics 2.0 course. This course will be retired, and you're not learning the version of Swift you'll be able to use in current versions of XCode. Most of the changes are fairly minor, but you'll avoid annoying things like trying to println(something), and getting an error, because println() doesn't exist in Swift 2.0 (it just uses print()).

Happy coding!