mu/archive/1.vm/x.mu
Kartik Agaram 2a4088119c 5852
2020-01-01 17:04:37 -08:00

9 lines
133 B
Forth
Generated

# example program: add two numbers
def main [
11:num <- copy 1
12:num <- copy 3
13:num <- add 11:num, 12:num
$dump-memory
]