about summary refs log tree commit diff stats
path: root/subx/dgen
Commit message (Expand)AuthorAgeFilesLines
* 5131Kartik Agaram2019-04-271-2/+2
* 4997Kartik Agaram2019-03-091-8/+10
* 4971 - clean up a few scriptsKartik Agaram2019-02-151-4/+19
* 4726Kartik Agaram2018-10-271-0/+11
itle='Blame the previous revision' href='/akkartik/mu/blame/fork.mu?h=hlt&id=b96af395b9af2ff9df94b3e82213171f30827c8d'>^
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
  }
]