Variable Declarations
In Go, you can declare variables using the 'var' keyword with an explicit type, or the short declaration operator ':=' which infers the type automatically.
package mainimport "fmt"func main() {var name string = "Gopher"age := 10fmt.Printf("%s is %d years old", name, age)}