What The HECK is GO!! | Let's GO | Anjal Bam
Why Go, and what can it do?

Search for a command to run...
Why Go, and what can it do?

No comments yet. Be the first to comment.
In this series, we will learn Golang beginners. And explore the world of GO inside out.
In my previous tutorial, What the heck is GO!! we covered what Go or Golang is, installation and basic hello world in Go. This tutorial mainly focuses on Variables and Constants in GO. Variables A Variable is a container that stores some data. Simple...
Let's get started with the developers' nightmare, Software Testing. The term "testing" in software development refers to the process of verifying and validating if the software is bug-free and meets the requirements specifications as guided by its de...

In my previous tutorial, What the heck is GO!! we covered what Go or Golang is, installation and basic hello world in Go. This tutorial mainly focuses on Variables and Constants in GO. Variables A Variable is a container that stores some data. Simple...

Dockerize Django and React applications the easy way.

Encrypt and decrypt like a pro.

The Go programming language commonly referred to as Golang, is a general-purpose programming language, developed by Google in 2007. The first version of Go was released in 2012.
The Go programming language is an open-source project considered an expressive, concise, clean, and efficient programming language. Go can compile to machine code yet has the convenience of garbage collection and the power of run-time application. It is a faster, statically typed, compiled language that feels like a dynamically typed, interpreted language.
According to the documentation, you can use Go for the following:
To install Go, we should follow the official docs here
To check if the version is properly installed, use the following command in your terminal:
go version
Confirm that the command prints the installed version of go.
This tutorial tells us what Go is, and how Go is installed and we'll get started with programming in go in the following lessons in the series.