Used to assign values to variables. `=`, `+=`, `-=`, `*=`, `/=`, `%=`, etc.
Updating variable values.
Using assignment operators.
x := 10 x += 5 // x is now 15 x *= 2 // x is now 30 fmt.Println(x)
Common in loops and counters.