1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// [[file:../gosh-shell.note::83dd8964][83dd8964]]
#![deny(warnings)]
#![deny(clippy::all)]
// 83dd8964 ends here

// [[file:../gosh-shell.note::88743546][88743546]]
mod repl;
// mod skim;
// 88743546 ends here

// [[file:../gosh-shell.note::67e2867b][67e2867b]]
#[cfg(feature = "adhoc")]
/// Docs for local mods
pub mod docs {
    macro_rules! export_doc {
        ($l:ident) => {
            pub mod $l {
                pub use crate::$l::*;
            }
        };
    }

    export_doc!(repl);
}
// 67e2867b ends here

// [[file:../gosh-shell.note::9cc4dec6][9cc4dec6]]
pub use repl::{Actionable, Interpreter};
// 9cc4dec6 ends here