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 trialJaehyeon Kim
862 PointsAbout Challenge Take 2 of 3 in Parameters and Tuples Step
What is wrong code about this? I don't know how to fix.
func greeting(#person: String) -> (language:String, greeting:String) {
let language = "English"
let greeting = (language,"Hello \(person)")
return greeting
}
let result = greeting(person: "Tom")
3 Answers
Daniel Sattler
4,867 PointsTry it this way:
func greeting(#person: String) -> (greeting: String, language: String) {
let language = "English"
let greeting = "Hello \(person)"
return (greeting, language)
}
let languageGreeting: (greeting:String, language:String) = greeting(person: "Tom")
You simpley forgot to give the language as well.
so in your example you used
return greeting
nothing about the language. as it is a tuple, you use something like
return (greeting, language)
Your constant will then be something like:
let languageGreeting: (greeting:String, language:String)
I hope this helps
tom barbour
3,865 PointsI believe the task asks you to create a variable instead of a constant, so you should be using var result, instead of let result
Daniel Sattler
4,867 Pointsit passes by using the exact same code as i just pasted above ;-)
tom barbour
3,865 Pointstom barbour
3,865 PointsTry this - should work.