Slang (short for Sabre Lang) is a tiny LISP built using Sabre.
- Download a release from Releases for your target platfomr.
- Extract files and add extraction path to
PATH
variable.
slang
for REPLslang -e "(+ 1 2 3)"
for executing stringslang -f "examples/simple.lisp"
for executing file.
If you specify both -f and -e flags, file will be executed first and then the string will be executed in the same scope and you will be dropped into REPL. If REPL not needed, use -norepl option.