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-27 00:28:51 -0800
committerKartik K. Agaram <vc@akkartik.com>2018-01-27 00:28:51 -0800
commitb301e0c0e6b54dceecbe4ee1ef8f610411015c30 (patch)
treed40803d412718221d7c92fd50c189563877b8301 /html/continuation1.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/continuation1.mu.html')
-rw-r--r--html/continuation1.mu.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/html/continuation1.mu.html b/html/continuation1.mu.html
index 639dd51f..3f9df7df 100644
--- a/html/continuation1.mu.html
+++ b/html/continuation1.mu.html
@@ -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> main [
+<span id="L13" class="LineNr">13 </span><span class="muRecipe">def</span> <a href='continuation1.mu.html#L13'>main</a> [
 <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>, create-yielder
+<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="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> create-yielder<span class="muRecipe"> -&gt; </span>n:num [
+<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="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>