Go Variables
Variables in Go refer to the names associated with values like numbers, or strings. When we declare a go variable, we specify the type and optionally the default value. If we don't specify the default value, go automatically assigns the default value to a go variable. Go is a statically-type language that means when we declare a variable, we also specify a data type. From the data type, Go com...