kotoba_core/
lib.rs

1//! kotoba-core - Kotoba Core Components
2
3pub mod types;
4pub mod ir;
5pub mod prelude {
6    // Re-export commonly used items
7    pub use crate::types::*;
8    pub use crate::ir::*;
9}
10
11#[cfg(test)]
12mod tests {
13    // Tests will be added here
14}