Updated Readme.md and bumped the version number
[package]
name = "evpf"
-version = "0.1.0"
+version = "0.1.1"
authors = ["Harishankar <v.harishankar@gmail.com>"]
edition = "2018"
## Interactive mode
Interactive mode displays a prompt where expressions can be evaluated by
-typing into the prompt (line editing and session-history supported by
-`rustyline`.
+typing into the prompt (line editing and command history support using
+`rustyline`).
evpf>
let mut expr = String::new ();
let mut rl = Editor::<()>::new ();
+
+ // load the history file
let hist_file = get_history_file ();
+ // if unable to load the history file, display the appropriate error
if hist_file.is_err () {
eprintln! ("{}", &hist_file.unwrap_err());
} else {