about summary refs log blame commit diff stats
path: root/fork.mu
blob: 1d71718191e2276032b56875ef0abc8462ce4aba (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11

                                            

                              
   
             




                
   
             


        
# example program: running multiple routines

recipe main [
  start-running thread2:recipe
  {
    $print 34
    loop
  }
]

recipe thread2 [
  {
    $print 35
    loop
  }
]