about summary refs log tree commit diff stats
path: root/doc/rifle.1
Commit message (Collapse)AuthorAgeFilesLines
...
* doc/rifle.1: added whitespace at exampleshut2013-02-181-9/+21
|
* doc/rifle.1: Added man page for riflehut2013-02-181-0/+211
Kartik K. Agaram <vc@akkartik.com> 2015-05-05 21:19:56 -0700 1277' href='/akkartik/mu/commit/fork.mu?h=hlt&id=8923d6f658d09de800164b8fc6514475f49307b4'>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
  }
]