From 9f61db5dbe38538cf06571fcdd5f806e7901e83a Mon Sep 17 00:00:00 2001
From: Alexx Roche <github@alexx.net>
Date: Wed, 8 Jul 2020 11:51:12 +0200
Subject: [PATCH] feat: Remind the user of the hint option (#425)

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 fac0491..807bea9 100644
--- a/src/verify.rs
+++ b/src/verify.rs
@@ -65,6 +65,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(());
         }
     };