Challenge: Hello World
Glissez pour afficher le menu
Task
Complete the following code that displays "Operation Successful".
index.go
123456package main import "fmt" func main() { ___("Operation Successful") }
- Use a function to display text.
- The function comes from the fmt package.
- Fill in the blank with the correct function name.
package main
import "fmt"
func main() {
fmt.Println("Operation Successful")
}
Tout était clair ?
Merci pour vos commentaires !
Section 1. Chapitre 7
Demandez à l'IA
Demandez à l'IA
Posez n'importe quelle question ou essayez l'une des questions suggérées pour commencer notre discussion
Section 1. Chapitre 7