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

bookChallenge: Hello World

Pyyhkäise näyttääksesi valikon

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")
}
Oliko kaikki selvää?

Miten voimme parantaa sitä?

Kiitos palautteestasi!

Osio 1. Luku 7

Kysy tekoälyä

expand

Kysy tekoälyä

ChatGPT

Kysy mitä tahansa tai kokeile jotakin ehdotetuista kysymyksistä aloittaaksesi keskustelumme

Osio 1. Luku 7
some-alt