diff options
author | Kartik Agaram <vc@akkartik.com> | 2021-06-23 16:59:38 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2021-06-23 16:59:38 -0700 |
commit | 2c1770a34924cc600fa0bc0ad765bd6ec2809d04 (patch) | |
tree | f15bc699f4a10bb426b8c3d54313177ee8cc9180 | |
parent | 709902d34a195b47052996334003b9e0cb6f3970 (diff) | |
download | mu-2c1770a34924cc600fa0bc0ad765bd6ec2809d04.tar.gz |
.
-rw-r--r-- | shell/README.md | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/shell/README.md b/shell/README.md index 7c1195e6..7927cda7 100644 --- a/shell/README.md +++ b/shell/README.md @@ -110,14 +110,6 @@ def (foo x) => (def (foo x) (print x) x (print x) x) ``` -Putting these rules together, parens are not required around the `if` in: - -``` -if (= 1 (% x 2)) - 'odd - 'even -``` - ### Infix The Mu shell supports infix operators: |