diff options
Diffstat (limited to 'src/watch/state.rs')
| -rw-r--r-- | src/watch/state.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/watch/state.rs b/src/watch/state.rs index 46f48d9..abfff7a 100644 --- a/src/watch/state.rs +++ b/src/watch/state.rs @@ -51,6 +51,11 @@ impl<'a> WatchState<'a> { pub fn run_current_exercise(&mut self) -> Result<()> { self.show_hint = false; + writeln!( + self.writer, + "\nChecking the exercise `{}`. Please wait…", + self.app_state.current_exercise().name, + )?; let success = self .app_state .current_exercise() |
