diff options
| author | Alexx Roche <github@alexx.net> | 2020-07-08 11:51:12 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-08 11:51:12 +0200 |
| commit | 9f61db5dbe38538cf06571fcdd5f806e7901e83a (patch) | |
| tree | d35f78fa6317df2a19149616ffb6066d875d5797 /src/verify.rs | |
| parent | 75c0053bb1332850fb98407b1ece2c8e3e1c6f64 (diff) | |
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.
Diffstat (limited to 'src/verify.rs')
| -rw-r--r-- | src/verify.rs | 1 |
1 files changed, 1 insertions, 0 deletions
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(()); } }; |
