oxur_repl/subprocess/
mod.rs

1//! Subprocess runtime support
2//!
3//! Type-erased variable storage and runtime utilities for
4//! code executing in the subprocess.
5
6mod variable_store;
7
8pub use variable_store::{init_global_store, set_result, take_result, with_store, VariableStore};