Skip to content

Owl Lisp v0.1.13

Compare
Choose a tag to compare
@aoh aoh released this 01 Sep 09:59
· 446 commits to develop since this release
v0.1.13

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.13.c.gz

Example usage from make:

OWL=ol-0.1.13
OWLSHA=4dc2fe537f9d952d02e3c67564531c0466386b3d353a3
OWLURL=https://github.com/aoh/owl-lisp/files/449350
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