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

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")
}
      

Everything was clear?

Section 1. Chapter 8
course content

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")
}
      

Everything was clear?

Section 1. Chapter 8
some-alt