Digital TransformationSoftware developmentTechnology

Go Pointers! Let’s talk about it…

A pointer, as name suggests, is a variable that points to a location in the memory of your system where a value is stored rather than a value itself. Basically, it is an address to the value stored in memory. The definition is simple but this concept can be a little tricky to wrap your […]

Technology

gofmt: Formatting the go code

Till now we used to use IDE formatting and indentation with combos like “ctrl+shift+f” or something else, so!! what if your machine could take care of all the formatting issues? and what if it not only works at file level but also at package level.

Technology

Go! Go! Go! :Intro to emerging “GoLang”

Go is an open source programming language initially developed by GOOGLE .When we say about key features,they are a good mixture of multiple languages like statically-typed language with syntax loosely derived from C, type safety, garbage collection, dynamic typing and contains large standard library. Through go,  Google desires to keep language specification as simple as […]