Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Aprenda Challenge: Hello World | Section
Getting Started with Go

bookChallenge: Hello World

Deslize para mostrar o menu

Task

Complete the following code that displays "Operation Successful".

index.go

index.go

copy
123456
package main import "fmt" func main() { ___("Operation Successful") }
  1. Use a function to display text.
  2. The function comes from the fmt package.
  3. Fill in the blank with the correct function name.
package main
import "fmt"
func main() {
    fmt.Println("Operation Successful")
}
Tudo estava claro?

Como podemos melhorá-lo?

Obrigado pelo seu feedback!

Seção 1. Capítulo 7

Pergunte à IA

expand

Pergunte à IA

ChatGPT

Pergunte o que quiser ou experimente uma das perguntas sugeridas para iniciar nosso bate-papo

Seção 1. Capítulo 7
some-alt