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 trialBrandon Escalante
5,772 PointsConfused? Swift Functions and Options: Challenge Task 2 of 3
So the question 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).
I first did the code below, which looked correct to me but with
ver person = "Tom"
and it told me I needed to add "XYZZY" not "Tom" for the variable. Am I missing something here? The code passed with the, "XYZZY".
func greeting(person: String) {
var person = "XYZZY"
println("Hello \(person)")
}
1 Answer
kirkbyo
15,791 PointsHey Brandon,
You don't need the person
variable that holds "XYZZY"
, because when the function gets called the person
parameter will be replaced by whatever string is passed.
Example:
func greeting(person: String) {
println("Hello \(person)")
}
greeting("Tom") // Will Print: "Hello Tom"
greeting("Joe") // Will Print: "Hello Joe"
greeting("Ozzie") // Will Print: "Hello Ozzie"
Hope this helped. If you have any other question don't hesitate to ask,
Ozzie