//! This module contains actors.
//! To build a solid app, avoid communicating by sharing memory.
//! Focus on message passing instead.
use FirstActor;
use Context;
use SecondActor;
use spawn;
// Uncomment below to target the web.
// use tokio_with_wasm::alias as tokio;
/// Creates and spawns the actors in the async system.
pub async