TAG

Golang

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. …

By tuannguyen · 4 min read · GO

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 …

By tuannguyen · 3 min read · GOLANG Solutions