xdl_runtime/lib.rs
1//! XDL Runtime System
2
3pub mod gc;
4pub mod memory;
5
6pub struct RuntimeSystem {
7 // TODO: Runtime implementation
8}
9
10impl RuntimeSystem {
11 pub fn new() -> Self {
12 Self {
13 // TODO: Initialize runtime
14 }
15 }
16}
17
18impl Default for RuntimeSystem {
19 fn default() -> Self {
20 Self::new()
21 }
22}