Get rid of test variable input

This commit is contained in:
greg 2016-01-22 04:55:52 -08:00
parent 96e6a87f64
commit b400796e4d
1 changed files with 0 additions and 1 deletions

View File

@ -8,7 +8,6 @@ struct Varmap {
impl Varmap {
fn new() -> Varmap {
let mut map = HashMap::new();
map.insert("a".to_string(), Expression::Number(10.0));
Varmap { map: map }
}