1//! Rhai plugin runtime implementation. 2//! 3//! This module provides a Rhai scripting runtime as an alternative to Lua. 4//! Rhai has a Rust-like syntax that may be more familiar to Rust developers. 5 6mod runtime; 7 8pub use runtime::RhaiRuntime;