mumble

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

commit 17398093806e259c3a82a85dbaffbb7ffbbb142e
parent 9db9305c06c58d5551cd0df477e10d70b0b06e79
Author: NunoSempere <nuno.sempere@protonmail.com>
Date:   Mon,  8 May 2023 12:21:50 -0400

README tweaks

Diffstat:
MREADME.md | 12+++++-------
1 file changed, 5 insertions(+), 7 deletions(-)

diff --git a/README.md b/README.md @@ -65,12 +65,9 @@ mumble> eval { head {1 2 3} } mumble> (eval { head {+ tail head } } ) 1 2 3 mumble> len {1 2 3} mumble> join { {1 2} {3 4} } -mumble> def { {x} { 100 } } -mumble> x -mumble> def { { a b c } { 1 2 3} } -mumble> * a b c -mumble> - a b c -mumble> / a b c +mumble> def {x} { 100 } +mumble> def {y} 100 +mumble> (x y) mumble> VERBOSITY=0 mumble> VERBOSITY=1 mumble> VERBOSITY=2 @@ -84,8 +81,9 @@ mumble> init {1 2} ## To do -- [x] Define functions! +- [x] Define functions - [ ] Define if, = and > +- [ ] Build fibonacci function ## Gotchas