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 trialSTEVEN PENA
13,928 PointsSweet, we have a function! In this task, all you have to do is call the function and pass in a value of 24.0 degrees. As
am close i just need a little help
// Enter your code below
func temperatureInFahrenheit(temperature:Double) -> Double {
let temperature = temperature * 9 / 5 + 32
return temperature
}
let fahrenheitTemp = (temperature: 24.0)
1 Answer
andren
28,558 PointsYou are indeed extremely close. Everything except for the call to the function is setup correctly. When you call a function you have to specify what argument to send it (which you have done) but you also first have to specify what function you are actually calling, by providing the name of the function.
So if I wanted to call a function called example
and send it a string that contained Hello World!
for a parameter named message
it would look like this:
example(message: "Hello World!")
Looking at that example you should be able to fill in the code that is missing from your solution.
STEVEN PENA
13,928 PointsSTEVEN PENA
13,928 Pointsthanks @andren
STEVEN PENA
13,928 PointsSTEVEN PENA
13,928 Pointshey andren can you help me with another challenge