about summary refs log tree commit diff stats
path: root/fork.mu
blob: 1d71718191e2276032b56875ef0abc8462ce4aba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# example program: running multiple routines

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

recipe thread2 [
  {
    $print 35
    loop
  }
]