summary refs log blame commit diff stats
path: root/ranger
Blame is not available for folders.
kkartik/mu/tree/archive/1.vm/x.mu?h=main&id=1626a32f2dc8a74a2dee02f07232ec8ec46c8148'>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
]