about summary refs log tree commit diff stats
path: root/html/apps
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-10-14 12:22:32 -0700
committerKartik Agaram <vc@akkartik.com>2020-10-14 12:22:32 -0700
commit7dd5a41e079d92ec9d0d09839ad009d66d2c1a17 (patch)
treeb71875d310f8e3fc06be239a3d7b8a484ce92ebf /html/apps
parent9635163bdc7f1d060b93896a7268f9bf9b1f39d2 (diff)
downloadmu-7dd5a41e079d92ec9d0d09839ad009d66d2c1a17.tar.gz
7030
Diffstat (limited to 'html/apps')
-rw-r--r--html/apps/factorial.mu.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/html/apps/factorial.mu.html b/html/apps/factorial.mu.html
index c52b1198..958139cf 100644
--- a/html/apps/factorial.mu.html
+++ b/html/apps/factorial.mu.html
@@ -71,7 +71,7 @@ if ('onhashchange' in window) {
 <span id="L12" class="LineNr">12 </span><span class="muComment"># Compare apps/factorial4.subx</span>
 <span id="L13" class="LineNr">13 </span>
 <span id="L14" class="LineNr">14 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='factorial.mu.html#L14'>factorial</a></span> n: int<span class="PreProc"> -&gt; </span>result/<span class="Constant">eax</span>: int <span class="Delimiter">{</span>
-<span id="L15" class="LineNr">15 </span>  compare n <span class="Constant">1</span>
+<span id="L15" class="LineNr">15 </span>  compare n, <span class="Constant">1</span>
 <span id="L16" class="LineNr">16 </span>  <span class="Delimiter">{</span>
 <span id="L17" class="LineNr">17 </span>    <span class="PreProc">break-if-&gt;</span>
 <span id="L18" class="LineNr">18 </span>    <span class="muComment"># n &lt;= 1; return 1</span>
@@ -89,7 +89,7 @@ if ('onhashchange' in window) {
 <span id="L30" class="LineNr">30 </span>
 <span id="L31" class="LineNr">31 </span><span class="PreProc">fn</span> <span class="muTest"><a href='factorial.mu.html#L31'>test-factorial</a></span> <span class="Delimiter">{</span>
 <span id="L32" class="LineNr">32 </span>  <span class="PreProc">var</span> result/<span class="Constant">eax</span>: int <span class="SpecialChar">&lt;-</span> <a href='factorial.mu.html#L14'>factorial</a> <span class="Constant">5</span>
-<span id="L33" class="LineNr">33 </span>  <a href='../102test.subx.html#L23'>check-ints-equal</a> result <span class="Constant">0x78</span> <span class="Constant">&quot;F - test-factorial&quot;</span>
+<span id="L33" class="LineNr">33 </span>  <a href='../102test.subx.html#L23'>check-ints-equal</a> result, <span class="Constant">0x78</span>, <span class="Constant">&quot;F - test-factorial&quot;</span>
 <span id="L34" class="LineNr">34 </span><span class="Delimiter">}</span>
 <span id="L35" class="LineNr">35 </span>
 <span id="L36" class="LineNr">36 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='factorial.mu.html#L36'>main</a></span> args-on-stack: (addr array (addr array byte))<span class="PreProc"> -&gt; </span>exit-status/<span class="Constant">ebx</span>: int <span class="Delimiter">{</span>