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 trialJonas Kristensen
2,738 PointsNeed help with tuple
I seem to be stocked with this challenge. When i print the line, it says "Hello Tom, English" but it only wants to say "English". How do i cutoff "Hello Tom", without deleting the greeting text?
func greeting(#person: String) -> (greeting: String, language: String) {
let language = "English"
let greeting = "Hello \(person)"
return(greeting, language)
}
var result = greeting(person: "Tom")
println()
1 Answer
Stephen McMillan
iOS Development with Swift Techdegree Graduate 33,994 PointsIn your println statement just write:
println(result.language)
// Or if you wanted the greeting you'd do
println(result.greeting)