Programming Fundamentals/Introduction/Go

hello.go

// This program displays "Hello world!"
//
// References:
//     https://gobyexample.com/hello-world

package main

import "fmt"

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

Try It

Copy and paste the code above into one of the following free online development environments or use your own Go compiler / interpreter / IDE.

See Also

Category:Programming Fundamentals#Introduction/Go%20 Category:Go (programming language)
Category:Go (programming language) Category:Programming Fundamentals