Golang
Set GOPATH Variable in Linux & Windows PROPERLY
Steps to modify or set GOPATH variable in go env in both Linux and Windows. Make the changes permanent (persistent)
Golang power calculation using math.Pow() function
Calculate the power of integers and float number using math.pow() function and other possible methods.
How to PROPERLY write multiline strings in GO?
How to declare golang multiline string. Declare a multiline string with and without special characters and escape characters used for new line or Tab delimiter. …
Getting started with CGO using Visual Studio Code
Getting started with cgo language. How to use it with Visual Studio Code. Calling C code with GO or calling GO code with C. Create Hello World cgo code.
SOLVED: How to reverse sort slice of integer in GO
There are two methods to sort slice of integer in reverse or descending order. To sort in descending order, you have to implement the sort.Interface interface …
