Because Go fits well for general performance-oriented software, more and more popular DevOps tools are written in Go, such as Docker, Kubernetes, Helm, and Istio.
As a DevOps engineer, I would like to learn Go and understand how Go can be used in my daily routine.
Go for software developing. Go is becoming more famous and important in the worl...
Installation Download the package from https://golang.org/doc/install Open the...
Let's start by understanding the hello.go example package main import ( "...
Decaliring Variables Let's update the hello.go example with a variable as follow...
If statement if (condition1) { } else if (condition2) { } else { } Note that...
Go has two type of structure to handle list: Array: Fixed length list of eleme...
Declairing Functions We can use the func keyword to declair a function as follow...
Within a small application, we can just use the main package and functionalities...
Technically, Go is not an object-oriented programming language. It doesn’t have...
Go provide pointer similar to C and C++. Go use & operator to access the me...