diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2016-02-12 23:55:45 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2016-02-12 23:55:45 -0800 |
commit | 219ee6d3c48349fcb88094ab1844446778aa4453 (patch) | |
tree | db804bf7cbd076f68111e1c0f10770afde75681d | |
parent | fff471663f73acba002ecded18c77e7902d39931 (diff) | |
download | mu-219ee6d3c48349fcb88094ab1844446778aa4453.tar.gz |
2651
-rw-r--r-- | Readme.md | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/Readme.md b/Readme.md index 35bacbaa..9e565805 100644 --- a/Readme.md +++ b/Readme.md @@ -341,13 +341,8 @@ inserting code at them. Any instruction without ingredients or products that starts with a non-alphanumeric character is a label. By convention we use '+' to indicate -label names. - -This is a good time to point out that `{` and `}` are also just labels in Mu -syntax, and that `break` and `loop` get rewritten as jumps to just after the -enclosing `}` and `{` respectively. This gives us a simple sort of structured -programming without adding complexity to the parser -- Mu functions remain -just flat lists of instructions. +recipe-local label names you can jump to, and surround in '<>' global label +names for inserting code at. --- |