From 17398093806e259c3a82a85dbaffbb7ffbbb142e Mon Sep 17 00:00:00 2001 From: NunoSempere Date: Mon, 8 May 2023 12:21:50 -0400 Subject: [PATCH] README tweaks --- README.md | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 6e441ac..bc0722f 100644 --- 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