about summary refs log blame commit diff stats
path: root/x.mu
blob: 15dded23ff89ab2c7b6958c1c96e60f07c464cea (plain) (tree)
1
2
3
4
5
6
7
8

                                  
             


                                       
              
 
# example program: add two numbers

recipe main [
  11:number <- copy 1:literal
  12:number <- copy 3:literal
  13:number <- add 11:number, 12:number
  $dump-memory
]