ling-runtime 2030.0.0

Ling language runtime — GC, allocator, and standard library
Documentation
1
2
3
4
5
6
7
8
//! Ling runtime library

pub mod gc;
pub mod alloc;
pub mod std;

pub use gc::Gc;
pub use alloc::LingBox;