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...
Learn how to define variables in Go · In Go we can declare variables using the keyword var. The variables can be visible in global scope or local. Global...
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 the shift operator. · Sometimes you need to define large numeric constants. Instead of typing a large number you can...