Fix divide support

This commit is contained in:
jonathandturner
2016-03-03 11:32:02 -05:00
parent 1d12141f0b
commit b5075e6511
3 changed files with 10 additions and 2 deletions

View File

@@ -25,8 +25,8 @@ fn main() {
if let Ok(mut f) = File::open(fname.clone()) {
let mut contents = String::new();
if let Ok(_) = f.read_to_string(&mut contents) {
match engine.eval(contents) {
Ok(_) => (),
Err(e) => {println!("Error: {:?}", e)}