1 2 3 4 5 6 7 8 9 10 11 12 13 14
use std::process; use spaik::repl::REPL; fn main() { let mut repl = match REPL::new(None) { Err(e) => { println!("Error: {}", e); process::exit(1); } Ok(v) => v, }; repl.readline_repl() }