Slide 21
Slide 21 text
#ourdevday2023
machine Counter {
var localCount: int;
state WaitForOpration {
on eIncrReq do (req: tIncrReq) {
localCount += req.count;
assert localCount > 0, "count should be positive!";
goto WaitForOperation;
}
on eDecrReq do (req: tDecrReq) {...}
}
}