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 trialRomi Stepovich
8,473 PointsI am getting this error message about my String `greeting` function
Here is the error message;
Your greeting
function printed "Hello (personNameString)" when called with "XYZZY" as the parameter. It should have printed "Hello XYZZY".
Here is my code. I know I am missing something but I am just not sure what it is...
func greeting(personName: String) { let personNameString = "Tom" println("Hello (personNameString)") }
3 Answers
Petar Popovic
Courses Plus Student 23,421 PointsHi Romi, let's go step by step
at the begging of a challenge you have this piece of code
func greeting() {
println("Hello")
}
First task is: Modify the function named greeting to accept a parameter. Name the parameter person which is of type String.
We need to add person: String in parentheses like this
func greeting(person: String) {
println("Hello")
}
Second task is: Modify the println statement within the greeting function to use the variable person. For example, if you pass a person named "Tom" to the function then it should display: Hello Tom. (Hint: you must use string interpolation).
We need to add (person) to a string in println like this
func greeting(person: String) {
println("Hello \(person)")
}
And finally third task is: Call the function greeting and pass it the string "Tom".
All we need to do is to call a function like this: greeting("Tom")
This is whole correct code
func greeting(person: String) {
println("Hello \(person)")
}
greeting("Tom")
Romi Stepovich
8,473 PointsThank you, Petar! That makes far more sense. I tend to try and overthink code. That makes far more sense the way you laid it out for me. I appreciate your help!
Joseph F Fares Jr
517 PointsThank you...Very clear explanation