about summary refs log tree commit diff stats
path: root/html/continuation4.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/continuation4.mu.html
parentaefa8fec6a473be459a2ff33e6bd96e7c22ced20 (diff)
downloadmu-805d58c6aeeeba3e4989c0eed6781b3861e8fae0.tar.gz
4199
Diffstat (limited to 'html/continuation4.mu.html')
-rw-r--r--html/continuation4.mu.html37
1 files changed, 18 insertions, 19 deletions
diff --git a/html/continuation4.mu.html b/html/continuation4.mu.html
index ecb81b8a..553d3d74 100644
--- a/html/continuation4.mu.html
+++ b/html/continuation4.mu.html
@@ -15,15 +15,14 @@ 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; }
-.Conceal { color: #4e4e4e; }
+.muControl { color: #c0a020; }
+.muRecipe { color: #ff8700; }
 .LineNr { color: #444444; }
 .Delimiter { color: #800080; }
-.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>
 
@@ -73,31 +72,31 @@ if ('onhashchange' in window) {
 <span id="L13" class="LineNr">13 </span><span class="Comment">#   2</span>
 <span id="L14" class="LineNr">14 </span><span class="Comment">#   3</span>
 <span id="L15" class="LineNr">15 </span>
-<span id="L16" class="LineNr">16 </span><span class="muRecipe">def</span> <a href='continuation4.mu.html#L16'>main</a> [
+<span id="L16" class="LineNr">16 </span><span class="muRecipe">def</span> main [
 <span id="L17" class="LineNr">17 </span>  <span class="Constant">local-scope</span>
-<span id="L18" class="LineNr">18 </span>  l:&amp;:<a href='064list.mu.html#L6'>list</a>:num <span class="Special">&lt;-</span> copy<span class="Constant"> 0</span>
+<span id="L18" class="LineNr">18 </span>  l:&amp;:list:num <span class="Special">&lt;-</span> copy<span class="Constant"> 0</span>
 <span id="L19" class="LineNr">19 </span>  l <span class="Special">&lt;-</span> push<span class="Constant"> 3</span>, l
 <span id="L20" class="LineNr">20 </span>  l <span class="Special">&lt;-</span> push<span class="Constant"> 2</span>, l
 <span id="L21" class="LineNr">21 </span>  l <span class="Special">&lt;-</span> push<span class="Constant"> 1</span>, l
-<span id="L22" class="LineNr">22 </span>  k:continuation, x:num, done?:bool <span class="Special">&lt;-</span> <span class="muControl">call-with-continuation-mark</span> <span class="Constant">100/mark</span>, <a href='continuation4.mu.html#L31'>create-yielder</a>, l
+<span id="L22" class="LineNr">22 </span>  k:continuation, x:num, done?:bool <span class="Special">&lt;-</span> <span class="muControl">call-with-continuation-mark</span> <span class="Constant">100/mark</span>, create-yielder, l
 <span id="L23" class="LineNr">23 </span>  <span class="Delimiter">{</span>
-<span id="L24" class="LineNr">24 </span>  <span class="Conceal">¦</span> <span class="muControl">break-if</span> done?
-<span id="L25" class="LineNr">25 </span>  <span class="Conceal">¦</span> $print x <span class="Constant">10/newline</span>
-<span id="L26" class="LineNr">26 </span>  <span class="Conceal">¦</span> k, x:num, done?:bool <span class="Special">&lt;-</span> call k
-<span id="L27" class="LineNr">27 </span>  <span class="Conceal">¦</span><span class="muControl"> loop</span>
+<span id="L24" class="LineNr">24 </span>    <span class="muControl">break-if</span> done?
+<span id="L25" class="LineNr">25 </span>    $print x <span class="Constant">10/newline</span>
+<span id="L26" class="LineNr">26 </span>    k, x:num, done?:bool <span class="Special">&lt;-</span> call k
+<span id="L27" class="LineNr">27 </span>   <span class="muControl"> loop</span>
 <span id="L28" class="LineNr">28 </span>  <span class="Delimiter">}</span>
 <span id="L29" class="LineNr">29 </span>]
 <span id="L30" class="LineNr">30 </span>
-<span id="L31" class="LineNr">31 </span><span class="muRecipe">def</span> <a href='continuation4.mu.html#L31'>create-yielder</a> l:&amp;:<a href='064list.mu.html#L6'>list</a>:num<span class="muRecipe"> -&gt; </span>n:num, done?:bool [
+<span id="L31" class="LineNr">31 </span><span class="muRecipe">def</span> create-yielder l:&amp;:list:num<span class="muRecipe"> -&gt; </span>n:num, done?:bool [
 <span id="L32" class="LineNr">32 </span>  <span class="Constant">local-scope</span>
 <span id="L33" class="LineNr">33 </span>  <span class="Constant">load-inputs</span>
 <span id="L34" class="LineNr">34 </span>  <span class="Delimiter">{</span>
-<span id="L35" class="LineNr">35 </span>  <span class="Conceal">¦</span> done? <span class="Special">&lt;-</span> equal l,<span class="Constant"> 0</span>
-<span id="L36" class="LineNr">36 </span>  <span class="Conceal">¦</span> <span class="muControl">break-if</span> done?
-<span id="L37" class="LineNr">37 </span>  <span class="Conceal">¦</span> n <span class="Special">&lt;-</span> first l
-<span id="L38" class="LineNr">38 </span>  <span class="Conceal">¦</span> l <span class="Special">&lt;-</span> <a href='064list.mu.html#L24'>rest</a> l
-<span id="L39" class="LineNr">39 </span>  <span class="Conceal">¦</span> <span class="muControl">return-continuation-until-mark</span> <span class="Constant">100/mark</span>, n, done?
-<span id="L40" class="LineNr">40 </span>  <span class="Conceal">¦</span><span class="muControl"> loop</span>
+<span id="L35" class="LineNr">35 </span>    done? <span class="Special">&lt;-</span> equal l,<span class="Constant"> 0</span>
+<span id="L36" class="LineNr">36 </span>    <span class="muControl">break-if</span> done?
+<span id="L37" class="LineNr">37 </span>    n <span class="Special">&lt;-</span> first l
+<span id="L38" class="LineNr">38 </span>    l <span class="Special">&lt;-</span> rest l
+<span id="L39" class="LineNr">39 </span>    <span class="muControl">return-continuation-until-mark</span> <span class="Constant">100/mark</span>, n, done?
+<span id="L40" class="LineNr">40 </span>   <span class="muControl"> loop</span>
 <span id="L41" class="LineNr">41 </span>  <span class="Delimiter">}</span>
 <span id="L42" class="LineNr">42 </span>  <span class="Comment"># A function that returns continuations shouldn't get the opportunity to</span>
 <span id="L43" class="LineNr">43 </span>  <span class="Comment"># return. Calling functions should stop calling its continuation after this</span>