×
×
Correct!
Return the addition of 5 + x.
package main
import ("fmt")
func myFunction(x int) int {
@(6) 5 + x
}
func main() {
fmt.Println(myFunction(3))
}
package main
import ("fmt")
func myFunction(x int) int {
return 5 + x
}
func main() {
fmt.Println(myFunction(3))
}
Not CorrectClick here to try again. Correct! |
This will reset the score of ALL 28 exercises.
Are you sure you want to continue?