about summary refs log blame commit diff stats
path: root/linux/apps/ex2.mu
blob: b3b746139640a64f72297f215071084bfa3c5336 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                      

         
                             




                  


                                   

 
                                        
                               
                 
               
 
# Add 3 and 4, and return the result in the exit code.
#
# To run:
#   $ ./translate apps/ex2.mu
#   $ ./a.elf
# Expected result:
#   $ echo $?
#   7

fn main -> _/ebx: int {
  var result/eax: int <- do-add 3 4
  return result
}

fn do-add a: int, b: int -> _/eax: int {
  var result/ecx: int <- copy a
  result <- add b
  return result
}