Go — Values, Variables, and Constants (basics)

Nikolaj Jensen Nov 21, 2021
1 min

Go — Values, Variables, and Constants (basics)

Go has several different value types, including:

  • String
  • Integer
  • Float
  • Boolean
  • etc.

Here are some examples:

package main

import "fmt"

func main() {
    // String
    var name string = "Alice"
    fmt.Println(name) // Output: Alice

    // Integer
    var age int = 30
    fmt.Println(age) // Output: 30

    // Float
    var score float64 = 95.5
    fmt.Println(score) // Output: 95.5

    // Boolean
    var isActive bool = true
    fmt.Println(isActive) // Output: true
}

All these values can be assigned to variables and saved for later use. Go’s variables are explicitly declared, and the type and value are then used by the compiler to, for example, check for type correctness when comparing two variables or during function calls.

Here are some examples of variable initialization:

package main

import "fmt"

func main() {
    // Declare a variable without initialization
    var count int
    fmt.Println(count) // Output: 0
}

~nikolajjsj