README tweaks

This commit is contained in:
NunoSempere 2023-05-08 12:21:50 -04:00
parent 9db9305c06
commit 1739809380

View File

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