about summary refs log tree commit diff stats
path: root/Dockerfile.arch
Commit message (Expand)AuthorAgeFilesLines
* Add Travis CI tests for Arch, Debian and OSX/macOSWilliam Wennerström2019-06-061-0/+58
016-03-08 01:46:47 -0800 2735 - define recipes using 'def'' href='/akkartik/mu/commit/x.mu?h=main&id=1ead356219bb2eb59487d1012f837bd07ec336f5'>1ead3562 ^
192d59d3 ^


d2244a2f ^
b96af395 ^
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
]