Remove println from reduction

This commit is contained in:
greg 2016-01-22 11:34:12 -08:00
parent b400796e4d
commit 3915c1f035
1 changed files with 0 additions and 1 deletions

View File

@ -76,7 +76,6 @@ impl Evaluator {
}
fn step(&mut self, node: ASTNode) -> ASTNode {
println!("Doing one step, current node is {:?}", node);
self.reduce(node)
}