diff --git a/codecrafters.yml b/codecrafters.yml index d4aa1d9..eec090d 100644 --- a/codecrafters.yml +++ b/codecrafters.yml @@ -2,7 +2,7 @@ # # These can be VERY verbose, so we suggest turning them off # unless you really need them. -debug: false +debug: true # Use this to change the Rust version used to run your code # on Codecrafters. diff --git a/src/main.rs b/src/main.rs index 1409a29..38117da 100644 --- a/src/main.rs +++ b/src/main.rs @@ -14,9 +14,9 @@ fn main() { if output.status.success() { let std_out = std::str::from_utf8(&output.stdout).unwrap(); - println!("{}", std_out); + print!("{}", std_out); let std_err = std::str::from_utf8(&output.stderr).unwrap(); - println!("{}", std_err); + print!("{}", std_err); } else { std::process::exit(1); }