Remove history

This commit is contained in:
Aditya Kulkarni 2019-09-30 12:14:20 -07:00
parent 48bf5f3f63
commit c61a82bf59

View File

@ -131,7 +131,6 @@ pub fn main() {
// `()` can be used when no completer is required
let mut rl = Editor::<()>::new();
let _ = rl.load_history("history.txt");
println!("Ready!");
@ -186,5 +185,5 @@ pub fn main() {
}
}
}
rl.save_history("history.txt").unwrap();
}