repo.or.cz
/
mu.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix other mandelbrot variants
[mu.git]
/
archive
/
1.vm
/
x.mu
blob
f53a86ba6d7244e3f541aa469fc46d41f1d69c43
1
# example program: add two numbers
2
3
def main [
4
11:num <- copy 1
5
12:num <- copy 3
6
13:num <- add 11:num, 12:num
7
$dump-memory
8
]