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 trialEmir Elöve
767 PointsSomehow the code works correctly on my Xcode but doesn't on this framework.
Is there a problem when compiling the code, it seems to work right on my Xcode.
func search(#name: String) -> String? {
let names = ["Doc","Grumpy","Happy"]
for n in names {
if n == name {
return n
}
}
return nil
}
if let result = search(name: "Doc"){
println("Found \(result)")
}
1 Answer
Chase Marchione
155,055 PointsHi Emir,
The challenge just wants the string "Found" to be printed out if the test passes (rather than "Found" and the name itself.)
if let result = search(name: "Doc"){
println("Found")
}
Hope this helps!
Emir Elöve
767 PointsEmir Elöve
767 PointsThat works! Thank you very much.