about summary refs log tree commit diff stats
path: root/html/screen.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/screen.mu.html
parentaf7349d50c40e0604c9bb1e9a50aa1c3c0d407d8 (diff)
downloadmu-f918675c8b11adb80a83000a3a984e4ff3bdcf1b.tar.gz
3569
Update syntax highlighting to not color numeric locations like literals.
Diffstat (limited to 'html/screen.mu.html')
-rw-r--r--html/screen.mu.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/html/screen.mu.html b/html/screen.mu.html
index 5e8d25ca..1f203815 100644
--- a/html/screen.mu.html
+++ b/html/screen.mu.html
@@ -34,14 +34,14 @@ body { font-size: 12pt; font-family: monospace; color: #eeeeee; background-color
 <span class="Comment"># screens.</span>
 <span class="muRecipe">def</span> main [
   open-console
-  <span class="Constant">10</span>:char<span class="Special"> &lt;- </span>copy <span class="Constant">97/a</span>
-  print <span class="Constant">0/screen</span>, <span class="Constant">10</span>:char/a, <span class="Constant">2/red</span>
-  <span class="Constant">1</span>:num/<span class="Special">raw</span>, <span class="Constant">2</span>:num/<span class="Special">raw &lt;- </span>cursor-position <span class="Constant">0/screen</span>
+  10:char <span class="Special">&lt;-</span> copy <span class="Constant">97/a</span>
+  print <span class="Constant">0/screen</span>, 10:char/a, <span class="Constant">2/red</span>
+  1:num/<span class="Special">raw</span>, 2:num/<span class="Special">raw</span> <span class="Special">&lt;-</span> cursor-position <span class="Constant">0/screen</span>
   wait-for-event <span class="Constant">0/console</span>
   clear-screen <span class="Constant">0/screen</span>
   move-cursor <span class="Constant">0/screen</span>, <span class="Constant">0/row</span>, <span class="Constant">4/column</span>
-  <span class="Constant">10</span>:char<span class="Special"> &lt;- </span>copy <span class="Constant">98/b</span>
-  print <span class="Constant">0/screen</span>, <span class="Constant">10</span>:char
+  10:char <span class="Special">&lt;-</span> copy <span class="Constant">98/b</span>
+  print <span class="Constant">0/screen</span>, 10:char
   wait-for-event <span class="Constant">0/console</span>
   move-cursor <span class="Constant">0/screen</span>, <span class="Constant">0/row</span>, <span class="Constant">0/column</span>
   clear-line <span class="Constant">0/screen</span>