about summary refs log tree commit diff stats
path: root/arc/edit.mu
Commit message (Expand)AuthorAgeFilesLines
* 1276 - make C++ version the defaultKartik K. Agaram2015-05-051-0/+18
a title='Blame the previous revision' href='/akkartik/mu/blame/fork.mu?h=hlt&id=27ba0937a3747684f299bb7a8b3cdd0fbb689db3'>^
83d8299d ^
8923d6f6 ^
bc643692 ^
8923d6f6 ^



1ead3562 ^
8923d6f6 ^
bc643692 ^
8923d6f6 ^


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

                                            
          
                       
   
             



        
             
   
             


        
# example program: running multiple routines

def main [
  start-running thread2
  {
    $print 34
    loop
  }
]

def thread2 [
  {
    $print 35
    loop
  }
]