By David Musau
Create custom GO module with Examples [Step-by-Step]
In this article, we are going to create a simple module in Go. What is a Go Module? A module is a collection of ...
By David Musau
In this article, we are going to create a simple module in Go. What is a Go Module? A module is a collection of ...
By David Musau
In this article, we are discussing how to return multiple values using a function in Go. Golang has inbuilt features which support multiple return values. ...
By David Musau
Methods to read different file types in GO There are several ways to read a file in Go, some of the most common methods are: ...
Golang function overview for beginners A function is a named group of statements that together perform a specific task in a program. When using functions, ...
By David Musau
Introduction to Read file with timeout in Go Reading and writing files are basic tasks needed for many Go programs. Reading files is one of ...
Introduction on Golang struct type Go structures (structs) are typed collections of fields of different types. In Go you can easily create your custom data ...
Introduction to Go Pointers In simple terms , a pointer in Go is a variable that stores the memory address instead of value. The memory ...
Overview on golang flag package Flags in software engineering are essentially variables that are used inside conditional statements so that statements in these conditions can ...
By David Musau
Understanding variables in Go A variable is a symbolic name or identifier used to store or hold values of a different data type and an ...
How to change default log module logging format in Golang Logging is a very important feature of an application in production, without which it's impossible ...