Owl Lisp v0.1.14
You can either download and install the source package, or just compile the precompiled C version of the repl/compiler and use it directly without further installation.
Precompiled C: ol-0.1.14.c.gz
Example usage from make:
OWL=ol-0.1.14
OWLSHA=8df96fcb16d666700984ba9db2767dbceba6f6d027623a19be72ea87ce44e15a
OWLURL=https://github.com/aoh/owl-lisp/releases/download/v0.1.14
bin/ol:
test -f $(OWL).c.gz || wget $(OWLURL)/$(OWL).c.gz
sha256sum $(OWL).c.gz | grep -q $(OWLSHA)
gzip -d < $(OWL).c.gz > $(OWL).c
mkdir -p bin
cc -O2 -o bin/ol $(OWL).c
bin/program: program.c
cc -O2 -o bin/program program.c
program.c: program.scm
ol -O2 -o program.c program.scm