recipe producer [
local-scope
chan:address:channel <- next-ingredient
n:number <- copy 0
{
done?:boolean <- lesser-than n, 5
break-unless done?
$print [produce: ], n, [
]
chan:address:channel <- write chan, n
n <- add n, 1
loop
}
]
recipe consumer [
local-scope
chan:address:channel <- next-ingredient
{
n:number, chan:address:channel <- read chan
$print [consume: ], n:number, [
]
loop
}
]
recipe main [
local-scope
chan:address:channel <- new-channel 3
routine1:number <- start-running producer:recipe, chan
routine2:number <- start-running consumer:recipe, chan
wait-for-routine routine1
wait-for-routine routine2
]