ling-core 2030.0.0

Core types, errors, and compiler infrastructure for Ling
Documentation
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;