about summary refs log tree commit diff stats
path: root/global.mu
Commit message (Expand)AuthorAgeFilesLines
* 2864 - replace all address:shared with just addressKartik K. Agaram2016-04-241-1/+1
* 2735 - define recipes using 'def'Kartik K. Agaram2016-03-081-2/+2
* 2576 - distinguish allocated addresses from othersKartik K. Agaram2016-01-191-2/+2
* 1868 - start using naked literals everywhereKartik K. Agaram2015-07-281-2/+2
* 1771Kartik K. Agaram2015-07-131-0/+14
here' href='/akkartik/mu/commit/fork.mu?h=hlt&id=bc6436927640603675e2e700007f53c5ab213869'>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
  }
]