Table Of Contents
Golang
Go is an open source project developed by a team at Google and many contributors from the open source community.
-
Golang is a compiled language.
-
Golang is cross-platform. Go compiler allows you to generate executable binaries for different operating systems.
-
Golang is strongly and statically typed.
-
Golang has garbage collector.
-
Go compiler’s error checking is able to detect variables that went unused, missing packages or imports necessary to run.
-
Built-in frameworks for testing and profiling.
-
Concurrency is an integral part of Go, supported by goroutines, channels and the select statement. Go’s toolchain has support to detect race conditions.
-
GoDoc helps to generate documentation with examples.
Like the content ?