The binaries for the operation systems are the following:
./bin/compiler-linuxfor Linux./bin/compiler-macosfor MacOS./bin/compiler-winfor Windows
Usage:
compiler --helpcompiler examples/HelloWorld.lisp --runcompiler examples/HelloWorld.lisp --out output.js
There are example Lisp programs in the example directory.
Options:
--outSpecify the file where the output should be saved.--runWill run the compiled JavaScript program.
The source code is in the src directory and the main entry file is src/compiler.js.
This compiler is written in TypeScript and packaged with pkg.
If you want to compile from source you have to install node@v8 & npm.
First of all install all dependencies with npm install and then either run the project with npm start or build the binaries with npm run build.