Remove debugging println

This commit is contained in:
Brandon Fish 2019-06-02 15:51:52 -05:00
parent 605c0dc399
commit 151af82e31

View File

@ -557,14 +557,11 @@ fn execute_wasm(options: &Run) -> Result<(), String> {
.map(|arg| arg.as_str())
.map(|x| Value::I32(x.parse().unwrap()))
.collect();
println!(
"{:?}",
instance
.dyn_func("main")
.map_err(|e| format!("{:?}", e))?
.call(&args)
.map_err(|e| format!("{:?}", e))?
);
instance
.dyn_func("main")
.map_err(|e| format!("{:?}", e))?
.call(&args)
.map_err(|e| format!("{:?}", e))?;
}
}