Get rid of println

This commit is contained in:
greg 2017-02-02 11:10:45 -08:00
parent 387ec25cda
commit 039022bfc5
2 changed files with 0 additions and 3 deletions

View File

@ -21,7 +21,6 @@ use language::{ProgrammingLanguage, LanguageInterface, LLVMCodeString, Evaluatio
mod llvm_wrap;
fn main() {
let languages: Vec<Box<LanguageInterface>> =
vec![
Box::new((Schala::new(), SchalaEvaluator::new(None))),

View File

@ -343,8 +343,6 @@ impl<'a> Evaluator<'a> {
return res;
}
println!("Reduce call, callable {:?} args: {:?}", callable, arguments);
let function = match callable {
Callable::Lambda(func) => func.clone(),
Callable::NamedFunction(name) => {