How to model if-expressions with actor systems?
问题 I'm try to emulate a simple functional language using actors. Actor systems nowadays are used basically for speeding up all kind of stuff by avoiding OS locks and stalled threads or to make microservices less painful, but initially it was supposed to be an alternative model of computation in general [1][2] and therefore should be capable to cover any programming language construct and certainly an if , right? While I'm aware that this is occasionally met with irritation, I saw one timid