diff options
author | Kartik Agaram <vc@akkartik.com> | 2020-01-01 20:31:01 -0800 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2020-01-01 20:31:01 -0800 |
commit | 7936ad5ca2194760cacf06c4794ce58b81e816a2 (patch) | |
tree | ac2186e183890c73c0356bb534044b04327c3cda /apps | |
parent | f4bef91bd97d7dee60a7718df7b77f8e24b24846 (diff) | |
download | mu-7936ad5ca2194760cacf06c4794ce58b81e816a2.tar.gz |
5860
Diffstat (limited to 'apps')
-rw-r--r-- | apps/ex2.mu | 17 |
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 +} |