about summary refs log tree commit diff stats
path: root/html/mu-init.subx.html
diff options
context:
space:
mode:
Diffstat (limited to 'html/mu-init.subx.html')
-rw-r--r--html/mu-init.subx.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/html/mu-init.subx.html b/html/mu-init.subx.html
index dc0c5ec7..bc78932c 100644
--- a/html/mu-init.subx.html
+++ b/html/mu-init.subx.html
@@ -59,9 +59,9 @@ if ('onhashchange' in window) {
 <span id="L3" class="LineNr"> 3 </span><span class="subxComment"># See translate_mu for how this file is used.</span>
 <span id="L4" class="LineNr"> 4 </span><span class="subxComment">#</span>
 <span id="L5" class="LineNr"> 5 </span><span class="subxComment"># Mu programs start at a function called 'main' with this signature:</span>
-<span id="L6" class="LineNr"> 6 </span><span class="subxComment">#   fn main args: (addr array addr array byte) -&gt; exit-status/ebx: int</span>
+<span id="L6" class="LineNr"> 6 </span><span class="subxComment">#   fn main args: (addr array addr array byte) -&gt; _/ebx: int</span>
 <span id="L7" class="LineNr"> 7 </span><span class="subxComment"># If your program doesn't need commandline arguments you can drop it:</span>
-<span id="L8" class="LineNr"> 8 </span><span class="subxComment">#   fn main -&gt; exit-status/ebx: int</span>
+<span id="L8" class="LineNr"> 8 </span><span class="subxComment">#   fn main -&gt; _/ebx: int</span>
 <span id="L9" class="LineNr"> 9 </span><span class="subxComment">#</span>
 <span id="L10" class="LineNr">10 </span><span class="subxComment"># Notice that the output must be in ebx, so that the exit() syscall can pick</span>
 <span id="L11" class="LineNr">11 </span><span class="subxComment"># it up.</span>