diff options
| author | Alexx Roche <github@alexx.net> | 2020-07-08 11:51:12 +0200 |
|---|---|---|
| committer | mokou <mokou@posteo.de> | 2020-07-08 11:52:23 +0200 |
| commit | 816b1f5e85d6cc6e72673813a85d0ada2a8f84af (patch) | |
| tree | e978e96091f8df24885aa7fd1b2a97f48c6b8369 /src | |
| parent | e823bef97063560170c6c286ae03e40fb50ea5b8 (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')
| -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(()); } }; |
