about summary refs log tree commit diff stats
path: root/html/continuation2.mu.html
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2018-01-27 00:28:51 -0800
committerKartik K. Agaram <vc@akkartik.com>2018-01-27 00:28:51 -0800
commitb301e0c0e6b54dceecbe4ee1ef8f610411015c30 (patch)
treed40803d412718221d7c92fd50c189563877b8301 /html/continuation2.mu.html
parent805d58c6aeeeba3e4989c0eed6781b3861e8fae0 (diff)
downloadmu-b301e0c0e6b54dceecbe4ee1ef8f610411015c30.tar.gz
4200
Forgot to set up exuberant_ctags_rc as .ctags on new laptop.
Diffstat (limited to 'html/continuation2.mu.html')
-rw-r--r--html/continuation2.mu.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/html/continuation2.mu.html b/html/continuation2.mu.html
index bfeb5cbc..e994b660 100644
--- a/html/continuation2.mu.html
+++ b/html/continuation2.mu.html
@@ -70,13 +70,13 @@ if ('onhashchange' in window) {
 <span id="L11" class="LineNr">11 </span><span class="Comment">#   2</span>
 <span id="L12" class="LineNr">12 </span><span class="Comment">#   3</span>
 <span id="L13" class="LineNr">13 </span>
-<span id="L14" class="LineNr">14 </span><span class="muRecipe">def</span> main [
+<span id="L14" class="LineNr">14 </span><span class="muRecipe">def</span> <a href='continuation2.mu.html#L14'>main</a> [
 <span id="L15" class="LineNr">15 </span>  <span class="Constant">local-scope</span>
-<span id="L16" class="LineNr">16 </span>  l:&amp;:list:num <span class="Special">&lt;-</span> copy<span class="Constant"> 0</span>
+<span id="L16" class="LineNr">16 </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="L17" class="LineNr">17 </span>  l <span class="Special">&lt;-</span> push<span class="Constant"> 3</span>, l
 <span id="L18" class="LineNr">18 </span>  l <span class="Special">&lt;-</span> push<span class="Constant"> 2</span>, l
 <span id="L19" class="LineNr">19 </span>  l <span class="Special">&lt;-</span> push<span class="Constant"> 1</span>, l
-<span id="L20" class="LineNr">20 </span>  k:continuation <span class="Special">&lt;-</span> <span class="muControl">call-with-continuation-mark</span> <span class="Constant">100/mark</span>, create-yielder, l
+<span id="L20" class="LineNr">20 </span>  k:continuation <span class="Special">&lt;-</span> <span class="muControl">call-with-continuation-mark</span> <span class="Constant">100/mark</span>, <a href='continuation2.mu.html#L29'>create-yielder</a>, l
 <span id="L21" class="LineNr">21 </span>  <span class="Delimiter">{</span>
 <span id="L22" class="LineNr">22 </span>    x:num, done?:bool <span class="Special">&lt;-</span> call k
 <span id="L23" class="LineNr">23 </span>    <span class="muControl">break-if</span> done?
@@ -85,14 +85,14 @@ if ('onhashchange' in window) {
 <span id="L26" class="LineNr">26 </span>  <span class="Delimiter">}</span>
 <span id="L27" class="LineNr">27 </span>]
 <span id="L28" class="LineNr">28 </span>
-<span id="L29" class="LineNr">29 </span><span class="muRecipe">def</span> create-yielder l:&amp;:list:num<span class="muRecipe"> -&gt; </span>n:num, done?:bool [
+<span id="L29" class="LineNr">29 </span><span class="muRecipe">def</span> <a href='continuation2.mu.html#L29'>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="L30" class="LineNr">30 </span>  <span class="Constant">local-scope</span>
 <span id="L31" class="LineNr">31 </span>  <span class="Constant">load-inputs</span>
 <span id="L32" class="LineNr">32 </span>  <span class="muControl">return-continuation-until-mark</span> <span class="Constant">100/mark</span>
 <span id="L33" class="LineNr">33 </span>  done? <span class="Special">&lt;-</span> equal l, <span class="Constant">0/nil</span>
 <span id="L34" class="LineNr">34 </span>  <span class="muControl">return-if</span> done?, <span class="Constant">0/false</span>
 <span id="L35" class="LineNr">35 </span>  n <span class="Special">&lt;-</span> first l
-<span id="L36" class="LineNr">36 </span>  l <span class="Special">&lt;-</span> rest l
+<span id="L36" class="LineNr">36 </span>  l <span class="Special">&lt;-</span> <a href='064list.mu.html#L24'>rest</a> l
 <span id="L37" class="LineNr">37 </span>]
 </pre>
 </body>