This tutorial for Go beginners covers data types and variables in Go, including integers, floating point numbers, strings, booleans, complex numbers, runes, and bytes.
It explains how to declare variables using var and short declaration, and covers variable scoping. It also introduces constants using the const keyword.
Other Golang learning posts in the same series are also available:
- Class #1 || Hello World!
- Class #2 || Data Types and Variables
- Class #3 || Code Layout (Structure)
- Class #4 || Naming, Scopes, Comments
- Class #5 || Arithmetic Operators