about summary refs log tree commit diff stats
path: root/html/x.mu.html
diff options
context:
space:
mode:
Diffstat (limited to 'html/x.mu.html')
-rw-r--r--html/x.mu.html13
1 files changed, 7 insertions, 6 deletions
diff --git a/html/x.mu.html b/html/x.mu.html
index aa8162bc..7ff0e1aa 100644
--- a/html/x.mu.html
+++ b/html/x.mu.html
@@ -13,9 +13,10 @@
 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; }
+.muRecipe { color: #ff8700; }
 .Comment { color: #9090ff; }
+.Constant { color: #00a0a0; }
 .Special { color: #ff6060; }
-.Identifier { color: #804000; }
 -->
 </style>
 
@@ -29,11 +30,11 @@ body { font-family: monospace; color: #eeeeee; background-color: #080808; }
 <pre id='vimCodeElement'>
 <span class="Comment"># example program: add two numbers</span>
 
-recipe main [
-  11:number<span class="Special"> &lt;- </span><span class="Identifier">copy</span> 1
-  12:number<span class="Special"> &lt;- </span><span class="Identifier">copy</span> 3
-  13:number<span class="Special"> &lt;- </span>add 11:number, 12:number
-  $dump-memory
+<span class="muRecipe">recipe</span> main [
+  <span class="Constant">11</span>:number<span class="Special"> &lt;- </span>copy <span class="Constant">1</span>
+  <span class="Constant">12</span>:number<span class="Special"> &lt;- </span>copy <span class="Constant">3</span>
+  <span class="Constant">13</span>:number<span class="Special"> &lt;- </span>add <span class="Constant">11</span>:number, <span class="Constant">12</span>:number
+<span class="Constant">  $dump-memory</span>
 ]
 </pre>
 </body>