blaze 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 79ede83a99 Meta: Improve project when used as a dependency 12 months ago
cmake Env: Load lisp code at runtime from files 1 year ago
example Repl+Env+Example: Load global outer environment in Repl::init 1 year ago
lisp Everywhere: Add docstring support 1 year ago
src/blaze Meta: Improve project when used as a dependency 12 months ago
vendor AST+Env+Printer+Reader: Implement floating point numbers 1 year ago
.clang-format AST+Eval: Provide convenient constructor for Collection 2 years ago
.gitignore Meta: Add project prerequisites 2 years ago
.gitmodules Initial commit 2 years ago
CMakeLists.txt Meta: Move main to example target, better include compatibility 1 year ago
LICENSE Meta: Add license file 2 years ago
README.org Meta: Change README.org title and description 1 year ago
compile_commands.json Meta: Add needed LSP requirement 1 year ago
lib AST+Env: Implement stepA 2 years ago
mal AST+Env: Implement stepA 2 years ago
tests Meta: Add symlink to pass more tests 2 years ago

README.org

blaze lisp

blaze lisp, written 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