about summary refs log tree commit diff stats
path: root/archive/1.vm/immutable-error.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-08-10 04:25:44 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-08-10 04:25:44 -0700
commit639f89ca42ed8082f6ae60ba7e11fbe0fa6bae1c (patch)
treeae8ea14350337f2842da03af047eb6b84125166f /archive/1.vm/immutable-error.mu
parentf09ee2aa19922e7416ee85d376e60f3e03c860ef (diff)
downloadmu-639f89ca42ed8082f6ae60ba7e11fbe0fa6bae1c.tar.gz
.
Vestige from when we were scanning all files in the current directory
rather than channels.json.
Diffstat (limited to 'archive/1.vm/immutable-error.mu')
0 files changed, 0 insertions, 0 deletions
artik.com> 2015-05-05 21:19:56 -0700 1277' href='/akkartik/mu/commit/fork.mu?h=hlt&id=8923d6f658d09de800164b8fc6514475f49307b4'>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
  }
]