diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2017-11-01 03:41:16 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2017-11-01 03:41:16 -0700 |
commit | 850822ffbfd441d05161452be28b54f882b1b378 (patch) | |
tree | 7f2cb2ac13e4f64e48fee3f060d83c95b349d5e3 /html/061text.mu.html | |
parent | a6fe8e274683c14efc6585b1b566afe9abfea7d1 (diff) | |
download | mu-850822ffbfd441d05161452be28b54f882b1b378.tar.gz |
4102
Diffstat (limited to 'html/061text.mu.html')
-rw-r--r-- | html/061text.mu.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/html/061text.mu.html b/html/061text.mu.html index a38b5cd1..9dab6f90 100644 --- a/html/061text.mu.html +++ b/html/061text.mu.html @@ -282,7 +282,7 @@ if ('onhashchange' in window) { <span id="L220" class="LineNr"> 220 </span> *buf <span class="Special"><-</span> put *buf, <span class="Constant">length:offset</span>, len <span id="L221" class="LineNr"> 221 </span>] <span id="L222" class="LineNr"> 222 </span> -<span id="L223" class="LineNr"> 223 </span><span class="muRecipe">def</span> append buf:&:<a href='061text.mu.html#L120'>buffer</a>:char, t:text<span class="muRecipe"> -> </span>buf:&:<a href='061text.mu.html#L120'>buffer</a>:char [ +<span id="L223" class="LineNr"> 223 </span><span class="muRecipe">def</span> append buf:&:<a href='061text.mu.html#L120'>buffer</a>:_elem, t:&:@:_elem<span class="muRecipe"> -> </span>buf:&:<a href='061text.mu.html#L120'>buffer</a>:_elem [ <span id="L224" class="LineNr"> 224 </span> <span class="Constant">local-scope</span> <span id="L225" class="LineNr"> 225 </span> <span class="Constant">load-ingredients</span> <span id="L226" class="LineNr"> 226 </span> len:num <span class="Special"><-</span> length *t @@ -290,8 +290,8 @@ if ('onhashchange' in window) { <span id="L228" class="LineNr"> 228 </span> <span class="Delimiter">{</span> <span id="L229" class="LineNr"> 229 </span> <span class="Conceal">¦</span> done?:bool <span class="Special"><-</span> greater-or-equal i, len <span id="L230" class="LineNr"> 230 </span> <span class="Conceal">¦</span> <span class="muControl">break-if</span> done? -<span id="L231" class="LineNr"> 231 </span> <span class="Conceal">¦</span> c:char <span class="Special"><-</span> index *t, i -<span id="L232" class="LineNr"> 232 </span> <span class="Conceal">¦</span> buf <span class="Special"><-</span> append buf, c +<span id="L231" class="LineNr"> 231 </span> <span class="Conceal">¦</span> x:_elem <span class="Special"><-</span> index *t, i +<span id="L232" class="LineNr"> 232 </span> <span class="Conceal">¦</span> buf <span class="Special"><-</span> append buf, x <span id="L233" class="LineNr"> 233 </span> <span class="Conceal">¦</span> i <span class="Special"><-</span> add i,<span class="Constant"> 1</span> <span id="L234" class="LineNr"> 234 </span> <span class="Conceal">¦</span> <span class="muControl">loop</span> <span id="L235" class="LineNr"> 235 </span> <span class="Delimiter">}</span> |