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

Зміст курсу

Introduction to GoLang

Challenge: Hello WorldChallenge: Hello World

Task

Complete the following code that displays "Operation Successful".

go

index.go


package main
import "fmt"
func main() {
    fmt.Println("Operation Successful")
}
      

Все було зрозуміло?

Секція 1. Розділ 8
course content

Зміст курсу

Introduction to GoLang

Challenge: Hello WorldChallenge: Hello World

Task

Complete the following code that displays "Operation Successful".

go

index.go


package main
import "fmt"
func main() {
    fmt.Println("Operation Successful")
}
      

Все було зрозуміло?

Секція 1. Розділ 8
some-alt