Installing “Go” and coding a small app on your computer

Luiggi Trejo
2 min readJan 1, 2023
Photo by AltumCode on Unsplash

Go is a programming language developed by Google in 2007. It was designed to be simple, fast, and statically typed, with features such as garbage collection and support for concurrency.

One of the main goals of Go is to improve the productivity of software engineers by providing a clean and efficient syntax and a standard library that covers a wide range of common programming tasks. Go also aims to support the development of large, complex software systems by providing features such as a robust type system, interfaces, and reflection.

One of the key features of Go is its support for concurrency, which allows developers to write programs that can take advantage of multiple processors or cores. Go provides several built-in types and functions for creating concurrent programs, such as the goroutine and the channel types.

Another notable feature of Go is its built-in support for testing and debugging. Go includes a built-in test framework that allows developers to write and run unit tests, and it also includes tools such as the go test and go vet commands for running tests and checking code for common mistakes.

In recent years, Go has become popular in the software industry for a variety of applications, including web development, system programming, and cloud infrastructure…

--

--