Today I was write a Golang script for a client. I was using MacOS for development. And need to deploy into a Linux environment. Firstly,…
Category: golang
The time to use a Map: All keys must be the same type All values must be the same type Keys are indexed – we…
In Golang, one of the confusing part is value type and reference type. Value type: int, float, string, bool, structs Reference type: slides, maps, channels,…