Installation
How to install and build Gor from source.
Gor requires Go 1.22+ to build. Clone the repository and build with Make:
git clone https://github.com/IWhitebird/Gor.git
cd Gor
make buildThis produces the bin/gor binary. You can run files, start the REPL, or inspect the AST:
./bin/gor file.gor # Run a source file
./bin/gor --repl # Interactive REPL
./bin/gor --ast file.gor # Print AST as JSON
./bin/gor --version # Print versionOr build manually without Make:
go build -o bin/gor ./cmd/gor/