aboutsummaryrefslogtreecommitdiff
path: root/mingling_core/src/program/repl_exec/res.rs
blob: 53e82d835a94ea3c01f0e7cf8376932073133eee (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 ResREPL {
    /// Marks whether the REPL should exit after the current loop ends
    pub exit: bool,
}