onion-vm 0.3.3

Virtual machine runtime for the Onion programming language with async execution and garbage collection
Documentation
1
2
3
4
5
6
7
//! Onion 虚拟机 lambda 子系统模块。
//!
//! - `runnable`:定义所有可调度对象的 trait 及相关类型。
//! - `scheduler`:包含多种调度器实现,支持任务调度与协作式执行。

pub mod runnable;
pub mod scheduler;