//! The runtime of compio.
//!
//! ```
//! let ans = compio_runtime::Runtime::new().unwrap().block_on(async {
//! println!("Hello world!");
//! 42
//! });
//! assert_eq!(ans, 42);
//! ```
pub use Task;
pub use *;
use BufResult;
pub use ;