1//! Core intermediate representation and type system for amalgam 2 3pub mod error; 4pub mod ir; 5pub mod types; 6 7pub use error::CoreError; 8pub use ir::IR; 9pub use types::{Type, TypeSystem};