Challenge: Hello World
Deslize para mostrar o 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")
}
Tudo estava claro?
Obrigado pelo seu feedback!
Seção 1. Capítulo 7
Pergunte à IA
Pergunte à IA
Pergunte o que quiser ou experimente uma das perguntas sugeridas para iniciar nosso bate-papo
Seção 1. Capítulo 7