about summary refs log tree commit diff stats
path: root/html/x.mu.html
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-09-06 16:35:46 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-09-06 16:35:46 -0700
commit0e4a335edc7d4e584924fd6b298156e45d2626c8 (patch)
tree4bde00176d6d00b72462e856974fecd4411ef025 /html/x.mu.html
parent3cf4cc43f2622816777c22c49c32e5159574a1d3 (diff)
downloadmu-0e4a335edc7d4e584924fd6b298156e45d2626c8.tar.gz
2175
Diffstat (limited to 'html/x.mu.html')
-rw-r--r--html/x.mu.html13
1 files changed, 6 insertions, 7 deletions
diff --git a/html/x.mu.html b/html/x.mu.html
index 7ff0e1aa..aa8162bc 100644
--- a/html/x.mu.html
+++ b/html/x.mu.html
@@ -13,10 +13,9 @@
 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>
 
@@ -30,11 +29,11 @@ body { font-family: monospace; color: #eeeeee; background-color: #080808; }
 <pre id='vimCodeElement'>
 <span class="Comment"># example program: add two numbers</span>
 
-<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>
+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
 ]
 </pre>
 </body>