Skip to main content

ling_runtime/
lib.rs

1//! Ling runtime library
2
3pub mod gc;
4pub mod alloc;
5pub mod std;
6
7pub use gc::Gc;
8pub use alloc::LingBox;