Learn How to use strings in Golang
In this article, you are going to learn about how to use strings in the Go language. In Go language, strings are immutable which means it is a read-only slice of bytes. Once you have declared a string you will not be able to change it in the Go language. This makes strings different from […]