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 trialconnor hoare
7,933 PointsI have not got the slightest clue why this is not working
I do not know if I am even close with this. Please help.
// Enter your code below
func temperatureInFahrenheit(temperature: Double, return: Double) {
return
}
1 Answer
Caleb Kleveter
Treehouse Moderator 37,862 PointsYou 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
}
jenko
8,562 Pointsjenko
8,562 PointsOr
Caleb Kleveter
Treehouse Moderator 37,862 PointsCaleb Kleveter
Treehouse Moderator 37,862 PointsThanks for catching that :).
jenko
8,562 Pointsjenko
8,562 PointsAnytime, 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 :)