What is Go
Table of contents
Features
Go is an open source programming language that makes it easy to build simple, reliable, and efficient software.
- Designed at Google in 2007.
- Compiled language such as C and Java.
- High-performance networking and multiprocessing.
- Web / Mobile application development.
- CLI tool development.
Learn more
Official site
https://golang.org/Download URL
https://golang.org/dl/Sample code
Writing a sample code for Hello World.
sample.go
package main import "fmt" func main() { fmt.Println("Hello World") }
Terminal
> go run sample.go
Hello World