about summary refs log tree commit diff stats
path: root/html/continuation1.mu.html
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2018-01-25 22:39:31 -0800
committerKartik K. Agaram <vc@akkartik.com>2018-01-25 22:39:31 -0800
commit805d58c6aeeeba3e4989c0eed6781b3861e8fae0 (patch)
treeea5225bdd7c5fbeea912671cdc5f1c4b2b2828d7 /html/continuation1.mu.html
parentaefa8fec6a473be459a2ff33e6bd96e7c22ced20 (diff)
downloadmu-805d58c6aeeeba3e4989c0eed6781b3861e8fae0.tar.gz
4199
Diffstat (limited to 'html/continuation1.mu.html')
-rw-r--r--html/continuation1.mu.html14
1 files changed, 7 insertions, 7 deletions
diff --git a/html/continuation1.mu.html b/html/continuation1.mu.html
index 7eeca335..639dd51f 100644
--- a/html/continuation1.mu.html
+++ b/html/continuation1.mu.html
@@ -15,13 +15,13 @@ body { font-size: 12pt; font-family: monospace; color: #aaaaaa; background-color
 a { color:#eeeeee; text-decoration: none; }
 a:hover { text-decoration: underline; }
 * { font-size: 12pt; font-size: 1em; }
+.muControl { color: #c0a020; }
+.muRecipe { color: #ff8700; }
 .LineNr { color: #444444; }
-.Comment { color: #9090ff; }
-.Comment a { color:#0000ee; text-decoration:underline; }
 .Constant { color: #00a0a0; }
 .Special { color: #c00000; }
-.muControl { color: #c0a020; }
-.muRecipe { color: #ff8700; }
+.Comment { color: #9090ff; }
+.Comment a { color:#0000ee; text-decoration:underline; }
 -->
 </style>
 
@@ -68,14 +68,14 @@ if ('onhashchange' in window) {
 <span id="L10" class="LineNr">10 </span><span class="Comment"># Expected output:</span>
 <span id="L11" class="LineNr">11 </span><span class="Comment">#   1</span>
 <span id="L12" class="LineNr">12 </span>
-<span id="L13" class="LineNr">13 </span><span class="muRecipe">def</span> <a href='continuation1.mu.html#L13'>main</a> [
+<span id="L13" class="LineNr">13 </span><span class="muRecipe">def</span> main [
 <span id="L14" class="LineNr">14 </span>  <span class="Constant">local-scope</span>
-<span id="L15" class="LineNr">15 </span>  k:continuation <span class="Special">&lt;-</span> <span class="muControl">call-with-continuation-mark</span> <span class="Constant">100/mark</span>, <a href='continuation1.mu.html#L20'>create-yielder</a>
+<span id="L15" class="LineNr">15 </span>  k:continuation <span class="Special">&lt;-</span> <span class="muControl">call-with-continuation-mark</span> <span class="Constant">100/mark</span>, create-yielder
 <span id="L16" class="LineNr">16 </span>  x:num <span class="Special">&lt;-</span> call k  <span class="Comment"># should return 1</span>
 <span id="L17" class="LineNr">17 </span>  $print x <span class="Constant">10/newline</span>
 <span id="L18" class="LineNr">18 </span>]
 <span id="L19" class="LineNr">19 </span>
-<span id="L20" class="LineNr">20 </span><span class="muRecipe">def</span> <a href='continuation1.mu.html#L20'>create-yielder</a><span class="muRecipe"> -&gt; </span>n:num [
+<span id="L20" class="LineNr">20 </span><span class="muRecipe">def</span> create-yielder<span class="muRecipe"> -&gt; </span>n:num [
 <span id="L21" class="LineNr">21 </span>  <span class="Constant">local-scope</span>
 <span id="L22" class="LineNr">22 </span>  <span class="Constant">load-inputs</span>
 <span id="L23" class="LineNr">23 </span>  <span class="muControl">return-continuation-until-mark</span> <span class="Constant">100/mark</span>