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 Functions in Swift Functions in Swift Recap: Functions

connor hoare
connor hoare
7,933 Points

I have not got the slightest clue why this is not working

I do not know if I am even close with this. Please help.

functions.swift
// Enter your code below
func temperatureInFahrenheit(temperature: Double, return: Double) {
return

}

1 Answer

Caleb Kleveter
MOD
Caleb Kleveter
Treehouse Moderator 37,862 Points

You have created the function to take in two arguments, it should only take in one. Then return the value passed in:

func temperatureInFahrenheit(temperature: Double, return: Double) {
// =================================================^ Remove this.
    return // Add a call to the `temperature` variable here.
}

It should look like this:

func temperatureInFahrenheit(temperature: Double) -> Double {
    return temperature
}

Or

func temperatureInFahrenheit(temperature: Double) -> Double {
    return temperature
}

Anytime, I was not 100% certain but I thought we needed to declare the return type -> Double so I posted. If it helps I'm happy :)