1 2 3 4 5 6 7 8
mod repl; pub use self::repl::*; pub fn repl(use_std: bool) { let mut repl = repl::REPL::new::<crate::PrettyReporter>(use_std); repl.start::<crate::PrettyReporter>(); }