Don't debug print args

This commit is contained in:
Tom Lin 2021-06-16 01:16:10 +01:00
parent ce4d6cfbfb
commit e3bd58378f

View File

@ -278,7 +278,6 @@ static DOUBLE_START_SCALAR: f64 = START_SCALAR as f64;
static DOUBLE_INIT: (f64, f64, f64) = (START_A as f64, START_B as f64, START_C as f64); static DOUBLE_INIT: (f64, f64, f64) = (START_A as f64, START_B as f64, START_C as f64);
pub fn run(args: &Vec<String>) -> bool { pub fn run(args: &Vec<String>) -> bool {
println!("`{:?}`", args);
let options: Options = Options::from_iter(args); let options: Options = Options::from_iter(args);