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

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