Update README.md

This commit is contained in:
Julian Antonielli 2022-05-19 07:44:09 -03:00 committed by GitHub
parent c10e839cc4
commit 3ed4bf92fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,3 +1,20 @@
# Gren
TODO
Compiler for the Gren programming language.
## Installing
Binaries are available for every commit to master [here](https://github.com/gren-lang/compiler/actions/workflows/releases.yml).
Once downloaded, you'll need to unzip the binary and place it somewhere in your `PATH`, and give it execute permissions.
Example (OS X):
```bash
# Download to ~/Downloads/gren-macOS.zip
cd ~/Downloads
unzip gren-macOS.zip
chmod +x gren
mv gren /usr/local/bin/
gren # Success
```