about summary refs log tree commit diff stats
path: root/immutable-error.mu
Commit message (Expand)AuthorAgeFilesLines
* 3400Kartik K. Agaram2016-09-181-0/+13
* 3340Kartik K. Agaram2016-09-121-13/+0
* 3318Kartik K. Agaram2016-09-101-0/+13
iv>
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
  }
]