There are two ways to build and use the project, depending on whether you need a local binary or want to install it into your $PATH.
Suitable for development, experiments, and code exploration.
go build -o bin/slider ./cmd/sliderThe binary will be created in the bin/ directory (which is listed in .gitignore).
If needed, you can manually copy it to a directory that is included in your $PATH:
cp bin/slider ~/bin/Suitable for installing the utility system-wide.
go install ./cmd/sliderThe binary will be installed into $GOBIN or, if it is not set, into $GOPATH/bin. Make sure this directory is included in your $PATH.