A simple (even naive) work-in-progress R7RS scheme interpreter written in C11.
To build and install the sarcasm executable, type make install in the root directory:
$ make installBy default, installation is done in /usr/local. This can be changed by adding a prefix variable to the makecommand
$ make install prefix=/my/pathNote: Build has been tested on:
- Mac OSX Mojave (10.14)
- Ubuntu Cosmic (18.10)
The run the sarcasm interpreter, type the following command
$ sarcasmFollowing options are recognized by the interpreter:
-h, --help print help and exit
-e, --eval <form> evaluate form and exit
-s, --script <filename> execute file as a shell script
-l, --load <filename> load file then run repl
See LICENSE