From 601759e428260f746ead95ce96f43955eb513c0e Mon Sep 17 00:00:00 2001 From: Alexx Roche <github@alexx.net> Date: Sat, 6 Jun 2020 11:24:30 +0200 Subject: [PATCH] Remind the user of the hint option Suggestion from AbdouSeck https://github.com/rust-lang/rustlings/issues/424#issuecomment-639870331 for when the student's code has errors. --- src/verify.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/verify.rs b/src/verify.rs index c9a7b6b..6e89c30 100644 --- a/src/verify.rs +++ b/src/verify.rs @@ -54,6 +54,7 @@ fn compile_and_run_interactively(exercise: &Exercise) -> Result<bool, ()> { Err(output) => { warn!("Ran {} with errors", exercise); println!("{}", output.stdout); + println!("{}", output.stderr); return Err(()); } };