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>2017-12-15 02:09:36 -0800
committerKartik K. Agaram <vc@akkartik.com>2017-12-15 02:09:36 -0800
commitfe8bf967a945c7d9e6aba36e42518262d54bd348 (patch)
treed8693470d0695508dd650d1b9b836fbeae79394c /html/continuation2.mu.html
parent5059f32d0ddf36b9591ad0c14ee474ad5f2f8816 (diff)
downloadmu-fe8bf967a945c7d9e6aba36e42518262d54bd348.tar.gz
4161
Diffstat (limited to 'html/continuation2.mu.html')
-rw-r--r--html/continuation2.mu.html16
1 files changed, 8 insertions, 8 deletions
diff --git a/html/continuation2.mu.html b/html/continuation2.mu.html
index 823b5227..f30381ff 100644
--- a/html/continuation2.mu.html
+++ b/html/continuation2.mu.html
@@ -3,7 +3,7 @@
 <head>
 <meta http-equiv="content-type" content="text/html; charset=UTF-8">
 <title>Mu - continuation2.mu</title>
-<meta name="Generator" content="Vim/7.4">
+<meta name="Generator" content="Vim/8.0">
 <meta name="plugin-version" content="vim7.4_v2">
 <meta name="syntax" content="none">
 <meta name="settings" content="number_lines,use_css,pre_wrap,no_foldcolumn,expand_tabs,line_ids,prevent_copy=">
@@ -15,15 +15,15 @@ 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; }
-.muRecipe { color: #ff8700; }
-.Special { color: #c00000; }
 .Conceal { color: #4e4e4e; }
+.LineNr { color: #444444; }
 .Delimiter { color: #800080; }
 .Comment { color: #9090ff; }
 .Comment a { color:#0000ee; text-decoration:underline; }
 .Constant { color: #00a0a0; }
-.LineNr { color: #444444; }
+.Special { color: #c00000; }
 .muControl { color: #c0a020; }
+.muRecipe { color: #ff8700; }
 -->
 </style>
 
@@ -77,7 +77,7 @@ if ('onhashchange' in window) {
 <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> call-with-continuation-mark <a href='continuation2.mu.html#L29'>create-yielder</a>, l
+<span id="L20" class="LineNr">20 </span>  k:continuation <span class="Special">&lt;-</span> call-with-continuation-mark <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>  <span class="Conceal">¦</span> x:num, done?:bool <span class="Special">&lt;-</span> call k
 <span id="L23" class="LineNr">23 </span>  <span class="Conceal">¦</span> <span class="muControl">break-if</span> done?
@@ -89,9 +89,9 @@ if ('onhashchange' in window) {
 <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>  return-continuation-until-mark
-<span id="L33" class="LineNr">33 </span>  done? <span class="Special">&lt;-</span> equal l,<span class="Constant"> 0</span>
-<span id="L34" class="LineNr">34 </span>  <span class="muControl">return-if</span> done?,<span class="Constant"> 0</span>
+<span id="L32" class="LineNr">32 </span>  return-continuation-until-mark <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> <a href='064list.mu.html#L24'>rest</a> l
 <span id="L37" class="LineNr">37 </span>]