https://www.seanmcp.com/articles/declaring-variables-in-go/
Declaring variables in Go – seanmcp.com
You can declare variables with var, :=, and const depending on your use case.
declaring variables in go
https://golangbot.com/variables/
Declaring Variables in Go | golangbot.com
The var keyword is used to declare a variable of a specific type. There is also a shorthand syntax available using := operator to declare a variable.
declaring variables in gogolangbot