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 trialRobert Vargas
784 Pointsswift_lint.swift:10:38: error: extraneous argument label 'temperature:' in call let celcius = temperatureInFahrenheit(t
getting this error after writing out function
func temperatureInFahrenheit(temperature: Double) -> Double { let celcius = temperature * 9.0 / 5.0 + 32.0 return celcius
} let celcius = temperatureInFahrenheit(temperature: 23.3)
// Enter your code below
func temperatureInFahrenheit(temperature: Double) -> Double {
let celcius = temperature * 9.0 / 5.0 + 32.0
return celcius
}
let celcius = temperatureInFahrenheit(temperature: 56.1)
1 Answer
John Roque Jorillo
13,117 Pointsi think you are using swift 3. try removing the temperature: label
let celcius = temperatureInFahrenheit( 56.1)