blaze lisp
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
Riyyi 79ede83a99 Meta: Improve project when used as a dependency 2 anni fa
cmake Env: Load lisp code at runtime from files 2 anni fa
example Repl+Env+Example: Load global outer environment in Repl::init 2 anni fa
lisp Everywhere: Add docstring support 2 anni fa
src/blaze Meta: Improve project when used as a dependency 2 anni fa
vendor AST+Env+Printer+Reader: Implement floating point numbers 2 anni fa
.clang-format AST+Eval: Provide convenient constructor for Collection 2 anni fa
.gitignore Meta: Add project prerequisites 3 anni fa
.gitmodules Initial commit 3 anni fa
CMakeLists.txt Meta: Move main to example target, better include compatibility 2 anni fa
LICENSE Meta: Add license file 3 anni fa
README.org Meta: Change README.org title and description 2 anni fa
compile_commands.json Meta: Add needed LSP requirement 2 anni fa
lib AST+Env: Implement stepA 2 anni fa
mal AST+Env: Implement stepA 2 anni fa
tests Meta: Add symlink to pass more tests 2 anni fa

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