Articles in this series
An Introduction to Go - The Simple, Efficient, and Reliable Language · Have you heard of Go, also known as Golang? It is an open-source programming...
Syntax overview. Comments! · I will create several articles for you to learn Go by examples. These examples are commented. Read the comments to learn the...
In Go we can declare variables using keyword var. The variables can be visible in global scope or local. Global variables are definet at package...
In Go it is good to use constants instead of regular variables to define identifiers for values that will not change during program execution. We use...
Learn how to create custom types in Go language. · In Go, a struct is a composite data type that groups together zero or more values with different data...
Create a large number in Go using shift operator. Sometimes you need to define large numeric constants. Instead of typing a large number you can use...