Move to using i64 by default

This commit is contained in:
jonathandturner
2016-04-12 19:52:27 -07:00
parent be3d360913
commit 3dfc6e627d
3 changed files with 75 additions and 75 deletions

View File

@@ -23,7 +23,7 @@ fn main() {
match engine.eval_file::<()>(&fname) {
Ok(_) => (),
Err(e) => {println!("Error: {:?}", e)}
Err(e) => {println!("Error: {}", e)}
}
}
}