What is regex? Is Regex the famous anime character? Oops, if you think so, you’re likely to be disappointed. The Go programming language uses the… Read More
Category Archives: Go Language
Golang is an open-source, light-weight procedural programming language, developed in 2007 by Robert Griesemer, Rob Pike, and Ken Thompson at Google but launched in 2009… Read More
Golang (or Go) is an open-source compiled programming language that is used to build simple, systematic, and secure software. It was designed by Google in… Read More
Python is a general-purpose, high level programming language developed by Guido van Rossum in 1991. It was structured with an accentuation on code comprehensibility, and… Read More
As per Wikipedia, data compression or file compression can be understood as a process of reducing the size of a particular file/folder/whatever data while still… Read More
Go language is a high-level programming language developed at Google Inc. A high-level language is in simple words, the programming language category created by humans… Read More
Pre-requisite learning: Installing Go on Windows / Installing Go on MacOS Technically defining, a package is essentially a container of source code for some specific… Read More
A switch statement is a multiway branch statement. It provides an efficient way to transfer the execution to different parts of a code based on… Read More
There is a set of programs to build and process Go source code. Instead of being run directly, programs in that set are usually invoked… Read More
Go language provides a string package that holds different types of functions to manipulate UTF-8 encoded strings. To access the function of the string package… Read More
Go has included support for versioned modules as proposed here since 1.11 with the initial prototype as vgo. The concept of modules in Go was… Read More
Go language provides a strconv package that implements conversions to and from string representations of basic data types. To access the functions of the strconv… Read More
Go language provides a ring package that implements operations on circular lists. To access the functions of the ring package you need to import the… Read More
Recursion is a concept where a function calls itself by direct or indirect means. Each call to the recursive function is a smaller version so… Read More
Golang provides multiple APIs to work with JSON including to and from built-in and custom data types using the encoding/json package. To parse JSON, we… Read More