My own little Scheme, adapted from the brilliant instructions at WYSAS.
cabal build
# copy standard library to /opt/leme
mkdir -P /opt/leme && cp stdlib.scm /opt/leme
Assuming that you have put the executable binary obtained from cabal build
in your $PATH
, run the standalone REPL
leme
Or give it a main file and optionally some arguments
leme factorial.leme 10
Right now there is some primitive support for Sublime Text and SublimeREPL inside tools directory.
Version 1.0 is pretty much a verbatim copy from WYSAS. The goal for version 2.0 is better build, distribution and a richer standard library, including string manipulation and networking.