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>2016-10-23 19:45:36 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-10-23 19:56:28 -0700
commitf918675c8b11adb80a83000a3a984e4ff3bdcf1b (patch)
tree2472316e3bf536e0bad76751c5f3504d029b8215 /html/x.mu.html
parentaf7349d50c40e0604c9bb1e9a50aa1c3c0d407d8 (diff)
downloadmu-f918675c8b11adb80a83000a3a984e4ff3bdcf1b.tar.gz
3569
Update syntax highlighting to not color numeric locations like literals.
Diffstat (limited to 'html/x.mu.html')
-rw-r--r--html/x.mu.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/html/x.mu.html b/html/x.mu.html
index 2e5b580e..e8502b27 100644
--- a/html/x.mu.html
+++ b/html/x.mu.html
@@ -31,9 +31,9 @@ body { font-size: 12pt; font-family: monospace; color: #eeeeee; background-color
 <span class="Comment"># example program: add two numbers</span>
 
 <span class="muRecipe">def</span> main [
-  <span class="Constant">11</span>:num<span class="Special"> &lt;- </span>copy <span class="Constant">1</span>
-  <span class="Constant">12</span>:num<span class="Special"> &lt;- </span>copy <span class="Constant">3</span>
-  <span class="Constant">13</span>:num<span class="Special"> &lt;- </span>add <span class="Constant">11</span>:num, <span class="Constant">12</span>:num
+  11:num <span class="Special">&lt;-</span> copy<span class="Constant"> 1</span>
+  12:num <span class="Special">&lt;-</span> copy<span class="Constant"> 3</span>
+  13:num <span class="Special">&lt;-</span> add 11:num, 12:num
 <span class="Constant">  $dump-memory</span>
 ]
 </pre>