A small Lisp-like runtime and REPL written in C.
meson setup build
meson compile -C buildIf libedit is available when configuring the build, the REPL links against it
for editable line input and history support. Builds without libedit keep using
standard line input.
./build/listtalkRun source files:
./build/listtalk path/to/file.ltPass script arguments:
./build/listtalk path/to/file.lt arg1 arg2In script mode, *command-line* is bound to a list of strings containing
all command-line entries from argv[1] onward (script path included).
meson test -C buildMIT. See LICENSE.