golang Go’s String, Byte, and Rune types December 14, 2023 by Anne Anderson No Comments RUNE is an alias type for INT32, where a value represents a Unicode character. Byte is an alias type for uint8, and a value is... Read More
golang Go string that you don’t know December 14, 2023 by Jocelyn Morris No Comments String is a basic data type provided by the Go language. It is used almost anytime in programming development. This article introduces you to strings... Read More