pr47 0.1.4-CHARLIE

A semi-experimental programming language. Still working in progress.
Documentation
//! # `executor`: core executor of AL31F
//!
//! ## ⚠️⚠️⚠️ Develop stage note ⚠️⚠️⚠
//! By this time the developers don't know what's the correct abstraction. This `executor` module
//! is temporary, maybe just here for testing. Project structure may change a lot in further days.

pub mod checked_bin_ops;
pub mod checked_cast_ops;
pub mod checked_unary_ops;
pub mod overload;
pub mod rtti;
pub mod unwinding;

pub mod sync_executor;
pub use sync_executor::*;

pub mod async_executor;

pub use async_executor::*;

#[cfg(feature = "async")]
pub mod coroutine_spawn;