How to get started with Go
October 19, 2022About 1 min
How to get started with Go 관련
The Go Handbook – Learn Golang for Beginners
Golang is an awesome, simple, modern, and fast programming language. It’s compiled, open source, and strongly typed. Golang – also called Go – was created by Google engineers with these main goals: make their projects compile (and run) faster be sim...
The Go Handbook – Learn Golang for Beginners
Golang is an awesome, simple, modern, and fast programming language. It’s compiled, open source, and strongly typed. Golang – also called Go – was created by Google engineers with these main goals: make their projects compile (and run) faster be sim...
Here are a few things you should know before we dive into the specifics of the language.
First, go.dev is the homepage of the language. This will be your go-to resource to:
- Download the Go binaries (the
go
command and other related tools) from go.dev/doc/install - Reference the official Go documentation go.dev/doc/
- See all the the Go packages pkg.go.dev
- Access the Go Playground go.dev/play/
…and more.