about summary refs log tree commit diff stats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
0 files changed, 0 insertions, 0 deletions
'>11 12 13 14 15 16 17
                                                      















                                             
# Add 3 and 4, 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
}