1
2
3
4
5
6
7
8
9
10
11
12
13
14
//!

mod cmd;
mod editor;
mod error;
mod history;
mod macros;

pub mod prelude {
    pub use crate::{
        editor::{Editor, EditorBuilder},
        error::{ReplBlockError, ReplBlockResult},
    };
}