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 trialChristopher Kim
511 PointsHow do I modify the println statement to include the variable person?
How do I add the variable String
func greeting(person: String) {
println("\Hello +\String")
}
2 Answers
kevin11
2,535 PointsYou need to use String Interpolation. You are trying to do to much. You do not need the + sign at all. Person needs to have a backslash and then parentheses enclosing it. If you can't figure it out I will supply the code for you.
Christopher Kim
511 PointsThanks! That worked
Christopher Kim
511 PointsChristopher Kim
511 PointsIt did not work. The question was.... 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.
kevin11
2,535 Pointskevin11
2,535 PointsThis is what the code should look like: func greeting(person: String) { println("Hello /(person)") }. But, the forward slash needs to be a backslash. For some reason it won't let me type a backslash.