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-05-30 19:30:33 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-05-30 19:37:02 -0700
commit4bbd3ded0b767ae0919551776e4c17189140e735 (patch)
tree29300d13dc2b869378fbde7f5456b1cfb519482d /html/callcc.mu.html
parent06f3cebe3eb627e18910b6394bfde88c806c8f91 (diff)
downloadmu-4bbd3ded0b767ae0919551776e4c17189140e735.tar.gz
1517
Diffstat (limited to 'html/callcc.mu.html')
-rw-r--r--html/callcc.mu.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/html/callcc.mu.html b/html/callcc.mu.html
index 32aec54d..50037f46 100644
--- a/html/callcc.mu.html
+++ b/html/callcc.mu.html
@@ -10,14 +10,14 @@
 <meta name="colorscheme" content="minimal">
 <style type="text/css">
 <!--
-pre { white-space: pre-wrap; font-family: monospace; color: #d0d0d0; background-color: #000000; }
-body { font-family: monospace; color: #d0d0d0; background-color: #000000; }
+pre { white-space: pre-wrap; font-family: monospace; color: #d0d0d0; background-color: #080808; }
+body { font-family: monospace; color: #d0d0d0; background-color: #080808; }
 * { font-size: 1em; }
-.muRecipe { color: #ff8700; }
 .Comment { color: #8080ff; }
 .Constant { color: #008080; }
 .Special { color: #ff6060; }
 .Identifier { color: #008080; }
+.muRecipe { color: #ff8700; }
 -->
 </style>
 
@@ -33,7 +33,7 @@ body { font-family: monospace; color: #d0d0d0; background-color: #000000; }
 
 <span class="muRecipe">recipe</span> main [
   c:continuation<span class="Special"> &lt;- </span>f
-  continue-from c:continuation            <span class="Comment"># &lt;-- ..when you hit this</span>
+  <span class="Identifier">continue-from</span> c:continuation            <span class="Comment"># &lt;-- ..when you hit this</span>
 ]
 
 <span class="muRecipe">recipe</span> f [
@@ -42,7 +42,7 @@ body { font-family: monospace; color: #d0d0d0; background-color: #000000; }
 ]
 
 <span class="muRecipe">recipe</span> g [
-  c:continuation<span class="Special"> &lt;- </span>current-continuation  <span class="Comment"># &lt;-- loop back to here</span>
+  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>
 ]