24 lines
533 B
Markdown
24 lines
533 B
Markdown
# SLS C
|
|
|
|
This is the C implementation for the YREA SLS interpreter.
|
|
|
|
## Compiling, Running, and Testing
|
|
|
|
### Linux (GCC)
|
|
|
|
Build Project: `make build`
|
|
Build and Run Project: `make run`
|
|
Build and Run Tests: `make test`
|
|
|
|
Interpreter binary location: `./bin/sls`
|
|
|
|
### Windows (MSVC)
|
|
|
|
Use a developer shell for all nmake commands.
|
|
|
|
Build Project: `nmake /f Makefile.nmake build`
|
|
Build and Run Project: `nmake /f Makefile.nmake run`
|
|
Build and Run Tests: `nmake /f Makefile.nmake test`
|
|
|
|
Interpreter binary location: `.\bin\sls.exe`
|