about summary refs log tree commit diff stats
path: root/html/063list.mu.html
diff options
context:
space:
mode:
Diffstat (limited to 'html/063list.mu.html')
-rw-r--r--html/063list.mu.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/html/063list.mu.html b/html/063list.mu.html
index 50060a5f..7e0f6e61 100644
--- a/html/063list.mu.html
+++ b/html/063list.mu.html
@@ -13,13 +13,13 @@
 pre { white-space: pre-wrap; font-family: monospace; color: #eeeeee; background-color: #080808; }
 body { font-family: monospace; color: #eeeeee; background-color: #080808; }
 * { font-size: 1.05em; }
+.muControl { color: #c0a020; }
 .muRecipe { color: #ff8700; }
 .muScenario { color: #00af00; }
 .Comment { color: #9090ff; }
 .Constant { color: #00a0a0; }
 .Special { color: #ff6060; }
 .CommentedCode { color: #6c6c6c; }
-.muControl { color: #c0a020; }
 -->
 </style>
 
@@ -46,10 +46,10 @@ container list [
   <span class="Constant">local-scope</span>
   x:location<span class="Special"> &lt;- </span><span class="Constant">next-ingredient</span>
   in:address:list<span class="Special"> &lt;- </span><span class="Constant">next-ingredient</span>
-  result:address:list<span class="Special"> &lt;- </span>new list:type
-  val:address:location<span class="Special"> &lt;- </span>get-address *result, value:offset
+  result:address:list<span class="Special"> &lt;- </span>new <span class="Constant">list:type</span>
+  val:address:location<span class="Special"> &lt;- </span>get-address *result, <span class="Constant">value:offset</span>
   *val<span class="Special"> &lt;- </span>copy x
-  next:address:address:list<span class="Special"> &lt;- </span>get-address *result, next:offset
+  next:address:address:list<span class="Special"> &lt;- </span>get-address *result, <span class="Constant">next:offset</span>
   *next<span class="Special"> &lt;- </span>copy in
   <span class="muControl">reply</span> result
 ]
@@ -58,7 +58,7 @@ container list [
 <span class="muRecipe">recipe</span> first [
   <span class="Constant">local-scope</span>
   in:address:list<span class="Special"> &lt;- </span><span class="Constant">next-ingredient</span>
-  result:location<span class="Special"> &lt;- </span>get *in, value:offset
+  result:location<span class="Special"> &lt;- </span>get *in, <span class="Constant">value:offset</span>
   <span class="muControl">reply</span> result
 ]
 
@@ -66,7 +66,7 @@ container list [
 <span class="muRecipe">recipe</span> rest [
   <span class="Constant">local-scope</span>
   in:address:list<span class="Special"> &lt;- </span><span class="Constant">next-ingredient</span>
-  result:address:list<span class="Special"> &lt;- </span>get *in, next:offset
+  result:address:list<span class="Special"> &lt;- </span>get *in, <span class="Constant">next:offset</span>
   <span class="muControl">reply</span> result
 ]