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 trialDaan van Klinken
1,744 PointsI'm stuck! I followed the instructions and my code works in the playground.
The question is about this assignment: http://teamtreehouse.com/library/functions-and-optionals/parameters-and-tuples/tuples-2
- I made a variable called result
- I set the value of that variable to the output of the function
- I passed the value "Tom" in the function
What did I do wrong?
func greeting(#person: String) -> (language: String, greeting: String) {
let greeting = ("English","Hello \(person)")
return greeting
}
var result = greeting(person: "Tom")
1 Answer
agreatdaytocode
24,757 PointsThis one has got everyone at some point.. even me.
You need to add "language" after "greeting" in your tuple.
func greeting(person: String) -> (greeting: String, language: String) {
let language = "English"
let greeting = "Hello \(person)"
return (greeting, language)
}
var result = greeting("Tom")
Daan van Klinken
1,744 PointsDaan van Klinken
1,744 PointsThanks Aaron,
I ended up swapping the greeting and language strings, and it worked (I still returned only greeting).
agreatdaytocode
24,757 Pointsagreatdaytocode
24,757 PointsAh good to know. That worked for me too.