Skip to content

Latest commit

 

History

History
16 lines (8 loc) · 334 Bytes

README.md

File metadata and controls

16 lines (8 loc) · 334 Bytes

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