24 lines
559 B
Markdown
24 lines
559 B
Markdown
# SLS C
|
|
|
|
This is the C implementation for the YREA SLS interpreter.
|
|
|
|
## Compiling, Running, and Testing
|
|
|
|
Interpreter binary location:
|
|
- Linux: `./bin/sls`
|
|
- Windows: `.\bin\sls.exe`
|
|
|
|
### Linux (GCC)
|
|
|
|
Build Project: `python3 build.py all`
|
|
Build and Run Project: `python3 build.py run`
|
|
Build and Run Tests: `python3 build.py test`
|
|
|
|
### Windows (MSVC)
|
|
|
|
*__For Windows users:__ Use a VS developer shell for all build commands.*
|
|
|
|
Build Project: `python build.py all`
|
|
Build and Run Project: `python build.py run`
|
|
Build and Run Tests: `python build.py test`
|