But we don't have a document explaining how to handle "async ops for
dummies" because -- and this is one of my pet peeves -- we only ever
document classes and methods, and we never document important topics that
would be useful to non-computer-scientist users. "Never" -- yes, I'm
overstating, but let's be honest -- I'm not far wrong, am I?
fork {
var score = Score([
...
]),
cond = Condition.new; // ***
score.recordNRT(...,
action: { cond.unhang } // ***
);
cond.hang; // ***
... go on
}