DevOps in Go — Variables
DevOps in Go bootcamp series
In programming languages, in order to facilitate the manipulation of data at a specific location in the memory, we use a specific name to bind the memory block located at a specific location. This name is called a variable.
But have a variable does not mean we can refer or modify memory randomly through variables. The complier needs to know…