about summary refs log tree commit diff stats
path: root/Readme.md
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-01-07 19:34:23 -0800
committerKartik K. Agaram <vc@akkartik.com>2015-01-07 19:34:23 -0800
commita3c025c548ba23b59925967b42fd58a6377c9478 (patch)
tree0e369f99cf5a63f4f35cf776fe3f71b5ed4ccd44 /Readme.md
parent6394b19aa4b7cd7f3fd0e93e47e8d0d47c82982f (diff)
downloadmu-a3c025c548ba23b59925967b42fd58a6377c9478.tar.gz
508
Diffstat (limited to 'Readme.md')
-rw-r--r--Readme.md9
1 files changed, 8 insertions, 1 deletions
diff --git a/Readme.md b/Readme.md
index 368e6232..dedd320b 100644
--- a/Readme.md
+++ b/Readme.md
@@ -211,7 +211,14 @@ checks in different parts of your program, you'll be able to do that.
 To summarize: mu instructions have multiple operand and result values. Values
 can have multiple rows separated by slashes, and rows can have multiple
 columns separated by colons. The address of a value is always in the very
-first column of the first row of its 'table'.
+first column of the first row of its 'table'. You can visualize the last
+example above as:
+
+```
+  z           : list : integer  /
+  assign-once : true            /
+  assigned    : false
+```
 
 ---