about summary refs log tree commit diff stats
path: root/apps/hello.mu
diff options
context:
space:
mode:
Diffstat (limited to 'apps/hello.mu')
-rw-r--r--apps/hello.mu4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/hello.mu b/apps/hello.mu
index a305edf0..5a656b96 100644
--- a/apps/hello.mu
+++ b/apps/hello.mu
@@ -4,7 +4,7 @@
 #   $ ./translate_mu apps/hello.mu
 #   $ ./a.elf
 
-fn main -> exit-status/ebx: int {
+fn main -> _/ebx: int {
   print-string 0, "Hello world!\n"
-  exit-status <- copy 0
+  return 0
 }
>
ebe2bda3 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17