mumble

A Lisp written in C, following the *Build Your Own Lisp* book
Log | Files | Refs | README

commit 9db9305c06c58d5551cd0df477e10d70b0b06e79
parent 61df0ac26ee4eeedece783b318a1df54b5ab3048
Author: NunoSempere <nuno.sempere@protonmail.com>
Date:   Mon,  8 May 2023 12:17:11 -0400

readme tweaks

Diffstat:
MREADME.md | 10++++------
Mnotes/savepoint.txt | 1+
2 files changed, 5 insertions(+), 6 deletions(-)

diff --git a/README.md b/README.md @@ -82,13 +82,11 @@ mumble> def {init} (@ {xs} { list((head xs)) } ) mumble> init {1 2} ``` +## To do + +- [x] Define functions! +- [ ] Define if, = and > ## Gotchas This doesn't currently run on Windows. But it easily could, with [preprocessor statements from the book]. - -## Usage and licensing - -I don't expect this project to be such that people might want to use it. If you want a - -But for the eventuality, this code is licensed under the MIT license; see the license.txt file. diff --git a/notes/savepoint.txt b/notes/savepoint.txt @@ -1,3 +1,4 @@ https://buildyourownlisp.com/chapter7_evaluation#trees https://buildyourownlisp.com/chapter9_s_expressions https://buildyourownlisp.com/chapter12_functions +https://buildyourownlisp.com/chapter13_conditionals