about summary refs log tree commit diff stats
path: root/html/callcc.mu.html
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-06-12 22:34:45 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-06-12 22:34:45 -0700
commitd44123cabaa730c778a0e2644c75dbfba6a7ab30 (patch)
treea24e90f9fc864ea5b1c5e1f13433f55ad7acd30b /html/callcc.mu.html
parent1ae4e0d95f7e37dc7d0b146542fc39b4aed491de (diff)
downloadmu-d44123cabaa730c778a0e2644c75dbfba6a7ab30.tar.gz
1556
Diffstat (limited to 'html/callcc.mu.html')
-rw-r--r--html/callcc.mu.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/html/callcc.mu.html b/html/callcc.mu.html
index b7dad852..42dda8e5 100644
--- a/html/callcc.mu.html
+++ b/html/callcc.mu.html
@@ -16,7 +16,7 @@ body { font-family: monospace; color: #eeeeee; background-color: #080808; }
 .Comment { color: #8080ff; }
 .Constant { color: #008080; }
 .Special { color: #ff6060; }
-.Identifier { color: #008080; }
+.muControl { color: #804000; }
 .muRecipe { color: #ff8700; }
 -->
 </style>
@@ -33,18 +33,18 @@ body { font-family: monospace; color: #eeeeee; background-color: #080808; }
 
 <span class="muRecipe">recipe</span> main [
   c:continuation<span class="Special"> &lt;- </span>f
-  <span class="Identifier">continue-from</span> c:continuation            <span class="Comment"># &lt;-- ..when you hit this</span>
+  <span class="muControl">continue-from</span> c:continuation            <span class="Comment"># &lt;-- ..when you hit this</span>
 ]
 
 <span class="muRecipe">recipe</span> f [
   c:continuation<span class="Special"> &lt;- </span>g
-  <span class="Identifier">reply</span> c:continuation
+  <span class="muControl">reply</span> c:continuation
 ]
 
 <span class="muRecipe">recipe</span> g [
-  c:continuation<span class="Special"> &lt;- </span><span class="Identifier">current-continuation</span>  <span class="Comment"># &lt;-- loop back to here</span>
- <span class="Identifier"> $print</span> <span class="Constant">1:literal</span>
-  <span class="Identifier">reply</span> c:continuation  <span class="Comment"># threaded through unmodified after first iteration</span>
+  c:continuation<span class="Special"> &lt;- </span><span class="muControl">current-continuation</span>  <span class="Comment"># &lt;-- loop back to here</span>
+  $print <span class="Constant">1:literal</span>
+  <span class="muControl">reply</span> c:continuation  <span class="Comment"># threaded through unmodified after first iteration</span>
 ]
 </pre>
 </body>