Articles in this series
Go language statically typed language, compiled programming language designed at Google. Infrastructure has changed a lot in years with cloud and...
A go file has the following parts: Package declaration Import packages main() function Example: package main import "fmt" func main() { ...
Variable Variables are for storing data values. In Golang there are available data types for variables are string, int, boolean, and float32. There...