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.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/html/x.mu.html b/html/x.mu.html
index fa874a2d..7ff0e1aa 100644
--- a/html/x.mu.html
+++ b/html/x.mu.html
@@ -13,10 +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; }
-.muRecipe { color: #ff8700; }
 -->
 </style>
 
@@ -31,9 +31,9 @@ body { font-family: monospace; color: #eeeeee; background-color: #080808; }
 <span class="Comment"># example program: add two numbers</span>
 
 <span class="muRecipe">recipe</span> main [
-  11:number<span class="Special"> &lt;- </span>copy <span class="Constant">1:literal</span>
-  12:number<span class="Special"> &lt;- </span>copy <span class="Constant">3:literal</span>
-  13:number<span class="Special"> &lt;- </span>add 11:number, 12:number
+  <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>