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 trial

iOS Swift Functions and Optionals Functions Creating a Function

help

help

greeting.swift
func greeting(){
println ( "Hello" )
}
greeting()

1 Answer

Tobias Helmrich
Tobias Helmrich
31,602 Points

Hey Marco,

the reason why you're not passing the first task is that you don't have to call the function for the first task. So for the first task all the code you need is the function:

func greeting() {
  println("Hello")
}

However in the second task of the challenge you'll have to call the function, so you actually already have the solution for the second task! :) Good luck!