A brief description of what this project does and who it's for Gollatz Conjecture - Collatz Visualizer with Golang and Ebiten
Install Golang from https://go.dev/dl/
mkdir yourgame cd yourgame go mod init foo # or github.com/yourname/yourgame or something
cd yourgame
Enter "code ." within terminal to open vs code (Or open created directory in any ide)
Copy collatgraph.go file from github into new go file in your directory that you can name anything you'd like
These are all the imports you'll need
"github.com/hajimehoshi/ebiten/v2" "github.com/hajimehoshi/ebiten/v2/vector" "github.com/hajimehoshi/ebiten/v2/inpututil" "golang.org/x/image/font" "golang.org/x/image/font/opentype" "golang.org/x/image/font/gofont/goregular" "github.com/hajimehoshi/ebiten/v2/text"
Run command : Go mod tidy
Run Command : Go build "name_of_main_file.go"
Run Command : Go run "name_of_main_file.go"
Enter Integer in field greater than 0 ( no negative numbers) and stopping time will be rendered in an ebiten window with vertices or nodes representing each iteration that the algorithm takes