about summary refs log tree commit diff stats
path: root/html/apps/arith.mu.html
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-07-11 00:02:29 -0700
committerKartik Agaram <vc@akkartik.com>2020-07-11 00:02:29 -0700
commit1c349ac7c571a97978e1cbbe726430ae9c741972 (patch)
treea555a01c640d6c589febf3961a771366126376c6 /html/apps/arith.mu.html
parentec73ed1230d75deb0f913a32617c9f1e0a5ca640 (diff)
downloadmu-1c349ac7c571a97978e1cbbe726430ae9c741972.tar.gz
6631
Diffstat (limited to 'html/apps/arith.mu.html')
-rw-r--r--html/apps/arith.mu.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/html/apps/arith.mu.html b/html/apps/arith.mu.html
index 842235c0..ede95c3e 100644
--- a/html/apps/arith.mu.html
+++ b/html/apps/arith.mu.html
@@ -91,7 +91,7 @@ if ('onhashchange' in window) {
 <span id="L32" class="LineNr"> 32 </span><span class="Comment">#</span>
 <span id="L33" class="LineNr"> 33 </span><span class="Comment"># Error handling is non-existent. This is just a prototype.</span>
 <span id="L34" class="LineNr"> 34 </span>
-<span id="L35" class="LineNr"> 35 </span><span class="PreProc">fn</span> <span class="muFunction">main</span><span class="PreProc"> -&gt; </span>exit-status/<span class="Constant">ebx</span>: int <span class="Delimiter">{</span>
+<span id="L35" class="LineNr"> 35 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='arith.mu.html#L35'>main</a></span><span class="PreProc"> -&gt; </span>exit-status/<span class="Constant">ebx</span>: int <span class="Delimiter">{</span>
 <span id="L36" class="LineNr"> 36 </span>  <span class="PreProc">var</span> look/<span class="Constant">esi</span>: byte <span class="SpecialChar">&lt;-</span> copy <span class="Constant">0</span>  <span class="Comment"># lookahead</span>
 <span id="L37" class="LineNr"> 37 </span>  <span class="PreProc">var</span> n/<span class="Constant">eax</span>: int <span class="SpecialChar">&lt;-</span> copy <span class="Constant">0</span>  <span class="Comment"># result of each expression</span>
 <span id="L38" class="LineNr"> 38 </span>  <a href='../304screen.subx.html#L123'>print-string-to-screen</a> <span class="Constant">&quot;press ctrl-c or ctrl-d to exit\n&quot;</span>