GO
Golang struct Tutorial [Practical Examples]
When you declare a struct without field values, we say that it is a zero value struct. A zero value golang struct has its corresponding field values set to
Go Pointers Explained for Beginners [Practical Examples]
Go pointers are magical in that they allow us to get access to different memory addresses easily. Go pointers also allow us to change the value of a variable
Advanced Golang Flag Techniques: Don't be a Rookie
Explore the powerful and transformative capabilities of the Golang Flag package. Unleash your command-line potential, navigate with confidence, and master the …
Simplifying variable scope in Golang [Practical Examples]
Variable scope refers to the particular places it is accessible from within the function or block level, a package of a given program. A package-level
How to change logging format of log module in GO
The above code prints out the results on the console with default logging format. Below is the result after executing the code. Output
