Go by Example: Hello World https://gobyexample.
com/hello-world
Go by Example: Hello World
Our first program will print the classic “hello package main
world” message. Here’s the full source code.
import "fmt"
func main() {
fmt.Println("hello world")
}
To run the program, put the code in hello-world.go $ go run hello-world.go
and use go run. hello world
Sometimes we’ll want to build our programs into $ go build hello-world.go
binaries. We can do this using go build. $ ls
hello-world hello-world.go
We can then execute the built binary directly. $ ./hello-world
hello world
Now that we can run and build basic Go
programs, let’s learn more about the language.
Next example: Values.
by Mark McGranaghan and Eli Bendersky | source | license
1 of 1 11/26/24, 23:21