about summary refs log tree commit diff stats
path: root/html/continuation2.mu.html
diff options
context:
space:
mode:
Diffstat (limited to 'html/continuation2.mu.html')
-rw-r--r--html/continuation2.mu.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/html/continuation2.mu.html b/html/continuation2.mu.html
index fff4b247..4b853e11 100644
--- a/html/continuation2.mu.html
+++ b/html/continuation2.mu.html
@@ -15,6 +15,7 @@ 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; }
 .Special { color: #c00000; }
 .Delimiter { color: #800080; }
@@ -22,7 +23,6 @@ a:hover { text-decoration: underline; }
 .Comment a { color:#0000ee; text-decoration:underline; }
 .Constant { color: #00a0a0; }
 .LineNr { color: #444444; }
-.muControl { color: #c0a020; }
 -->
 </style>
 
@@ -72,7 +72,7 @@ if ('onhashchange' in window) {
 <span id="L13" class="LineNr">13 </span>
 <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;:<a href='064list.mu.html#L6'>list</a>: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"> null</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
@@ -89,8 +89,8 @@ if ('onhashchange' in window) {
 <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="L33" class="LineNr">33 </span>  done? <span class="Special">&lt;-</span> equal l,<span class="Constant"> null</span>
+<span id="L34" class="LineNr">34 </span>  <span class="muControl">return-if</span> done?, <span class="Constant">0/dummy</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>]