blob: 1295652e34f82812ca8214f3f250ef4ab4d9e171 (
plain) (
blame)
1
2
3
4
5
6
|
/// Internal resource for the REPL runtime, used to control the REPL's state during execution
#[derive(Default, Clone)]
pub struct REPL {
/// Marks whether the REPL should exit after the current loop ends
pub exit: bool,
}
|