Install Golang from https://go.dev/dl/
Open Git Bash or CMD
mkdir yourgame cd yourgame go mod init foo # or github.com/yourname/yourgame or something
cd yourgame
code . within terminal to open vs code (Or open created directory in any ide)
Run command : Go mod tidy
Run Command : Go build main.go
Run Command : Go run main.go