Hello World! in Go

In the Go programming language, you can greet the world with 'Hello, World!' as your starting point.

Hello World! in Go
Photo by Roman Synkevych / Unsplash

In the Go programming language, you can greet the world with 'Hello, World!' as your starting point:

package main

import "fmt"

func main() {
    fmt.Println("Hello, World!")
}