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