diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2018-01-27 00:28:51 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2018-01-27 00:28:51 -0800 |
commit | b301e0c0e6b54dceecbe4ee1ef8f610411015c30 (patch) | |
tree | d40803d412718221d7c92fd50c189563877b8301 /html/mutable.mu.html | |
parent | 805d58c6aeeeba3e4989c0eed6781b3861e8fae0 (diff) | |
download | mu-b301e0c0e6b54dceecbe4ee1ef8f610411015c30.tar.gz |
4200
Forgot to set up exuberant_ctags_rc as .ctags on new laptop.
Diffstat (limited to 'html/mutable.mu.html')
-rw-r--r-- | html/mutable.mu.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/html/mutable.mu.html b/html/mutable.mu.html index 3464b1fb..e95e071d 100644 --- a/html/mutable.mu.html +++ b/html/mutable.mu.html @@ -57,13 +57,13 @@ if ('onhashchange' in window) { <pre id='vimCodeElement'> <span id="L1" class="LineNr"> 1 </span><span class="Comment"># compare immutable-error.mu</span> <span id="L2" class="LineNr"> 2 </span> -<span id="L3" class="LineNr"> 3 </span><span class="muRecipe">def</span> main [ +<span id="L3" class="LineNr"> 3 </span><span class="muRecipe">def</span> <a href='mutable.mu.html#L3'>main</a> [ <span id="L4" class="LineNr"> 4 </span> <span class="Constant">local-scope</span> <span id="L5" class="LineNr"> 5 </span> x:&:num <span class="Special"><-</span> new <span class="Constant">number:type</span> -<span id="L6" class="LineNr"> 6 </span> foo x +<span id="L6" class="LineNr"> 6 </span> <a href='mutable.mu.html#L9'>foo</a> x <span id="L7" class="LineNr"> 7 </span>] <span id="L8" class="LineNr"> 8 </span> -<span id="L9" class="LineNr"> 9 </span><span class="muRecipe">def</span> foo x:&:num<span class="muRecipe"> -> </span>x:&:num [ +<span id="L9" class="LineNr"> 9 </span><span class="muRecipe">def</span> <a href='mutable.mu.html#L9'>foo</a> x:&:num<span class="muRecipe"> -> </span>x:&:num [ <span id="L10" class="LineNr">10 </span> <span class="Constant">local-scope</span> <span id="L11" class="LineNr">11 </span> <span class="Constant">load-inputs</span> <span id="L12" class="LineNr">12 </span> *x <span class="Special"><-</span> copy<span class="Constant"> 34</span> |