I have been in DevOps related jobs for past 6 years dealing mainly with Kubernetes in AWS and on-premise as well. I spent quite a lot …
:date_long | 1 min Read
Go rune type
func arrays() {
// !!! if declating string -> use double quotes ""
s := "this is a string"
b := []byte(s)
fmt.Printf("%v, %T\n", b, b)
// !!! rune <- this is a type and it is represented as int32
// "rune" is a type alias for "int32"
r := 'a'
var x rune = 'a'
fmt.Printf("%v, %T", r, r)
fmt.Printf("%v, %T", x, x)
}