#go
Read more stories on Hashnode
Articles with this tag
Introduction The Open-Closed Principle states that types should be open for extension, but closed for modification. Analogy Lets assume we're...
Introduction The Single Responsibility Principle states that a class or type should have one primary responsibility and as a result one reason to...
Introduction GO stores a variable inside a computer memory. A variable occupies some space on the memory depending on the variables type. Variables...
GO Packages are like an imaginary box which can contain lots of GO files. In this respect, a package is only a directory inside your GO workspace...
Introduction To write your first code in any programming language, it has become a norm to start with a simple hello world program. In this post, I...
Introduction I just recently started learning the GO programming language. While I have realized that keeping notes of what I am learning along the...