Make a Lisp
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Riyyi 3aa99d0045 Meta: Add make targets for running self-hosted tests 8 months ago
src Meta: Add make targets for running self-hosted tests 8 months ago
vendor Initial commit 1 year ago
.clang-format AST+Eval: Provide convenient constructor for Collection 1 year ago
.gitignore Meta: Add project prerequisites 1 year ago
.gitmodules Initial commit 1 year ago
CMakeLists.txt Meta: Add make targets for running self-hosted tests 8 months ago
LICENSE Meta: Add license file 1 year ago
README.org Reader: Prevent infinite loop during List and Vector creation 12 months ago
lib AST+Env: Implement stepA 1 year ago
mal AST+Env: Implement stepA 1 year ago
tests Meta: Add symlink to pass more tests 1 year ago

README.org

mal - Make a Lisp

This is an implementation of the Make A Lisp project, done in C++20.

Usage

Run the REPL

$ make run

Run mal tests

$ make test0 | less

Download

Clone

$ git clone https://github.com/riyyi/blaze
$ cd blaze
$ git submodule update --init --recursive

Or

$ git clone --recursive https://github.com/riyyi/blaze

Update

$ git pull
$ git submodule update --recursive

Build instructions

$ mkdir build
$ cd build
$ cmake .. && make