Skip to main content

ling_core/
lib.rs

1//! Core types and errors for the Ling compiler
2
3pub mod error;
4pub mod types;
5pub mod arena;
6
7pub use error::LingError;
8pub use types::{Type, TypeId};
9pub use arena::Arena;