about summary refs log tree commit diff stats
path: root/html/real-files.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/real-files.mu.html
parentaf7349d50c40e0604c9bb1e9a50aa1c3c0d407d8 (diff)
downloadmu-f918675c8b11adb80a83000a3a984e4ff3bdcf1b.tar.gz
3569
Update syntax highlighting to not color numeric locations like literals.
Diffstat (limited to 'html/real-files.mu.html')
-rw-r--r--html/real-files.mu.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/html/real-files.mu.html b/html/real-files.mu.html
index 2ffe5dfc..67d2f7b3 100644
--- a/html/real-files.mu.html
+++ b/html/real-files.mu.html
@@ -35,16 +35,16 @@ body { font-size: 12pt; font-family: monospace; color: #eeeeee; background-color
 
 <span class="muRecipe">def</span> main [
   <span class="Constant">local-scope</span>
-  f:num/file<span class="Special"> &lt;- </span>$open-file-for-reading <span class="Constant">[/tmp/mu-x]</span>
+  f:num/file <span class="Special">&lt;-</span> $open-file-for-reading <span class="Constant">[/tmp/mu-x]</span>
   $print <span class="Constant">[file to read from: ]</span>, f, <span class="Constant">10/newline</span>
-  c:char, eof?:bool<span class="Special"> &lt;- </span>$read-from-file f
+  c:char, eof?:bool <span class="Special">&lt;-</span> $read-from-file f
   $print <span class="Constant">[copying ]</span>, c, <span class="Constant">10/newline</span>
-  f<span class="Special"> &lt;- </span>$close-file f
+  f <span class="Special">&lt;-</span> $close-file f
   $print <span class="Constant">[file after closing: ]</span>, f, <span class="Constant">10/newline</span>
-  f<span class="Special"> &lt;- </span>$open-file-for-writing <span class="Constant">[/tmp/mu-y]</span>
+  f <span class="Special">&lt;-</span> $open-file-for-writing <span class="Constant">[/tmp/mu-y]</span>
   $print <span class="Constant">[file to write to: ]</span>, f, <span class="Constant">10/newline</span>
   $write-to-file f, c
-  f<span class="Special"> &lt;- </span>$close-file f
+  f <span class="Special">&lt;-</span> $close-file f
 ]
 </pre>
 </body>