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

Paul Je
Paul Je
4,435 Points

Could somebody help me?

Probably one part or two small areas are wrong. Let me know!

functions.swift
// Enter your code below

func temperatureInFahrenheit(temperature: Double) -> Double {

let fahrenheitFromCelcius = (temperature * 9 / 5) + 32

let fahrenheitTemp = temperatureInFahrenheit(24.0)

}

1 Answer

Jason Anders
MOD
Jason Anders
Treehouse Moderator 145,858 Points

Hey Paul,

You're almost there, but there are just a couple of things:

  1. You are missing the return statement in the function that the second task asked for.

  2. The function call that is to be assigned to the constant needs to be outside of the function. You can't call a function inside of itself.

Here is the corrected code for your review. I hope it all makes sense. :)

func temperatureInFahrenheit(temperature: Double) -> Double {

  let fahrenheitFromCelcius = (temperature * 9 / 5) + 32

  return fahrenheitFromCelcius
}

let fahrenheitTemp = temperatureInFahrenheit(24.0)

:dizzy: