about summary refs log tree commit diff stats
path: root/x.mu
blob: 500ceae7a60ee31739e5f7ae62735665f6bdcb15 (plain) (blame)
1
2
3
4
5
6
7
8
# example program: add two numbers

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