pr47 0.1.3

A semi-experimental programming language. Still working in progress.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! # `executor.rs`: 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 sync_executor;
pub use sync_executor::*;

pub mod async_executor;
pub use async_executor::*;