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

Zahren Al-Ezrai
Zahren Al-Ezrai
1,286 Points

help me

i need help

functions.swift
func temperatureInFahrenheit(temperature: Double) -> Double {
  return ((temperature * 9) / 5) + 32
}
let fahrenheitTemp = temperatureInFahrenheit

1 Answer

Alex Tenser
Alex Tenser
1,999 Points
// Enter your code below

func temperatureInFahrenheit(temperature: Double) -> Double {
let conversion = temperature * 9 / 5 + 32

return conversion

}

let fahrenheitTemp = temperatureInFahrenheit(24.0)

The above syntax works. You were very close, but I think you need to create a declaration to return.