20 lines
527 B
Rust
20 lines
527 B
Rust
|
|
//! Basic box implementations
|
||
|
|
//!
|
||
|
|
//! This module contains the core basic Box types that implement the
|
||
|
|
//! fundamental data types in Nyash: String, Integer, Boolean, Void, File, and Error.
|
||
|
|
|
||
|
|
// Individual basic box implementations
|
||
|
|
mod string_box;
|
||
|
|
mod integer_box;
|
||
|
|
mod bool_box;
|
||
|
|
mod void_box;
|
||
|
|
mod file_box;
|
||
|
|
mod error_box;
|
||
|
|
|
||
|
|
// Re-export all basic box types
|
||
|
|
pub use string_box::StringBox;
|
||
|
|
pub use integer_box::IntegerBox;
|
||
|
|
pub use bool_box::BoolBox;
|
||
|
|
pub use void_box::VoidBox;
|
||
|
|
pub use file_box::FileBox;
|
||
|
|
pub use error_box::ErrorBox;
|