Multiple return values in Golang functions
A function in Go can return multiple values. In many cases, it is very useful. Multiple return values help to check errors in a concise way as we will see in this post. Golang Function return values A function can have any number of return values. Go supports this feature internally. Let’s see how a […]
Multiple return values in Golang functions Read More »