Complete NyashBox trait implementation project - all core boxes working with tests

Co-authored-by: moe-charm <217100418+moe-charm@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-08-10 03:28:59 +00:00
parent e6e36ccfb0
commit b745f5ffa2
3 changed files with 147 additions and 0 deletions

View File

@ -26,6 +26,9 @@ pub mod type_box; // 🌟 TypeBox revolutionary system
#[cfg(target_arch = "wasm32")]
pub mod wasm_test;
#[cfg(test)]
pub mod tests;
// Re-export main types for easy access
pub use box_trait::{NyashBox, StringBox, IntegerBox, BoolBox, VoidBox, AddBox};
pub use environment::{Environment, PythonCompatEnvironment};