From 757723a7e8db5822df3b7ca56012448ca292ce4f Mon Sep 17 00:00:00 2001
From: mo8it <mo8it@proton.me>
Date: Fri, 12 Apr 2024 19:30:36 +0200
Subject: [PATCH] Add missing newline

---
 src/run.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/run.rs b/src/run.rs
index ebe4f965..47485492 100644
--- a/src/run.rs
+++ b/src/run.rs
@@ -21,7 +21,7 @@ pub fn run(app_state: &mut AppState) -> Result<()> {
     }
 
     stdout.write_fmt(format_args!(
-        "{}{}",
+        "{}{}\n",
         "✓ Successfully ran ".green(),
         exercise.path.to_string_lossy().green(),
     ))?;