Concept
- Managed tasks should not be assumed to mean unrestricted parallel execution of arbitrary VM code.
Example
use async
use threading
job = async.run work 21
answer = async.await job
worker = threading.run work 21
result = try threading.join worker