about summary refs log tree commit diff stats
path: root/apps/ex2.mu
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-01-01 20:31:01 -0800
committerKartik Agaram <vc@akkartik.com>2020-01-01 20:31:01 -0800
commit7936ad5ca2194760cacf06c4794ce58b81e816a2 (patch)
treeac2186e183890c73c0356bb534044b04327c3cda /apps/ex2.mu
parentf4bef91bd97d7dee60a7718df7b77f8e24b24846 (diff)
downloadmu-7936ad5ca2194760cacf06c4794ce58b81e816a2.tar.gz
5860
Diffstat (limited to 'apps/ex2.mu')
-rw-r--r--apps/ex2.mu17
1 files changed, 17 insertions, 0 deletions
diff --git a/apps/ex2.mu b/apps/ex2.mu
new file mode 100644
index 00000000..fc20aa2e
--- /dev/null
+++ b/apps/ex2.mu
@@ -0,0 +1,17 @@
+# Add two numbers, and return the result in the exit code.
+#
+# To run:
+#   $ ./translate_mu apps/ex2.mu
+#   $ ./a.elf
+# Expected result:
+#   $ echo $?
+#   7
+
+fn main -> result/ebx: int {
+  result <- do-add 3 4
+}
+
+fn do-add a: int, b: int -> result/ebx: int {
+  result <- copy a
+  result <- add b
+}