Install Golang from https://go.dev/dl/
Copy scorp_main.go
I recommend a fresh install
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)
Copy scorp_main.go github into new go file in your directory that you can name anything you'd like
Run command : Go Get github.com/hajimehoshi/ebiten/v2
Run command : Go mod tidy
Run Command : Go build main.go
Run Command : Go run main.go