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 trialJuan Jorquera
1,964 Pointscan't compile :(
I try with this differents codes:
func greeting() { println("Hello") }
greeting()
func greeting() ->String { return ("Hello") }
println(greeting())
i'm proving with xCode and it works.
func greeting() {
println("Hello")
}
greeting()
4 Answers
Greg Kaleka
39,021 PointsJuan - thanks for the screen grab. Now I see the problem. You're only supposed to define the function in step 1. Don't call it yet! Remove or comment out line 5 in your code. You'll do that in the next step.
Greg Kaleka
39,021 PointsI would refresh the page and try again. Your code works for me when I copy and paste it.
Juan Jorquera
1,964 PointsIs not working for me, take a look please http://grab.by/EWy6
Juan Jorquera
1,964 PointsThanks Greg!!
William Li
Courses Plus Student 26,868 PointsWilliam Li
Courses Plus Student 26,868 PointsGood answer :)