|
|
|
|
|
by beefdev
2347 days ago
|
|
The most obvious choice would be async/await support - no specific plans yet, though. The concurrency model is, like C++ or even C#: sequential consistency for data-race-free programs (SC-DRF). No green threads or anything crazy, no 'message passing', just normal system threads, normal locks, you control how you access memory yourself. You do synchronization just like you'd do in C/C++. |
|