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