Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Lernen Challenge: Hello World | Section
Practice
Projects
Quizzes & Challenges
Quizze
Challenges
/
Getting Started with Go

bookChallenge: Hello World

Swipe um das Menü anzuzeigen

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")
}
War alles klar?

Wie können wir es verbessern?

Danke für Ihr Feedback!

Abschnitt 1. Kapitel 7

Fragen Sie AI

expand

Fragen Sie AI

ChatGPT

Fragen Sie alles oder probieren Sie eine der vorgeschlagenen Fragen, um unser Gespräch zu beginnen

Abschnitt 1. Kapitel 7
some-alt