Skip to content

Commit

Permalink
feat: Remind the user of the hint option (#425)
Browse files Browse the repository at this point in the history
Suggestion from AbdouSeck #424 (comment)
for when the student's code has errors.
  • Loading branch information
alexxroche authored and mokou committed Jul 8, 2020
1 parent e823bef commit 816b1f5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/verify.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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(());
}
};
Expand Down

0 comments on commit 816b1f5

Please sign in to comment.