Go is a statically typed programming language, which means once the variable is defined it’s data type cannot change. For folks working in dynamically typed languages like Python or Javascript this may seem a little tedious at first. But data types can help us think clearly about the variables, the operations we perform on these … Continue reading 3 interesting primitive data types in Golang
Category: Go Variables
Golang: Understanding Variables
Now that we understand Golang’s project structure and how to write our own packages and commands, it’s time to get to the language basics and learn about variables. We will learn them in a very practical way - by writing code 🙂 The keyword var is the basic form to define variables. A var statement … Continue reading Golang: Understanding Variables